码迷,mamicode.com
首页 > 其他好文 > 详细

Strobogrammatic Number

时间:2017-11-27 13:30:16      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:返回   ati   har   example   shm   ram   rmi   存在   length   

A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).

Write a function to determine if a number is strobogrammatic. The number is represented as a string.

For example, the numbers "69", "88", and "818" are all strobogrammatic.

 

public class Solution {
    public boolean isStrobogrammatic(String num) {
        HashMap<Character, Character> map = new HashMap<Character, Character>();
        map.put(‘1‘,‘1‘);
        map.put(‘0‘,‘0‘);
        map.put(‘6‘,‘9‘);
        map.put(‘9‘,‘6‘);
        map.put(‘8‘,‘8‘);
        int left = 0, right = num.length() - 1;
        while(left <= right){
            // 如果字母不存在映射或映射不对,则返回假
            if(!map.containsKey(num.charAt(right)) || num.charAt(left) != map.get(num.charAt(right))){
                return false;
            }
            left++;
            right--;
        }
        return true;
    }
}

  

Strobogrammatic Number

标签:返回   ati   har   example   shm   ram   rmi   存在   length   

原文地址:http://www.cnblogs.com/apanda009/p/7903593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!