apanda009
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;
    }
}

  

分类:

技术点:

相关文章:

  • 2021-08-22
  • 2021-08-22
  • 2021-09-30
  • 2021-09-30
  • 2021-08-09
  • 2021-12-02
  • 2022-01-23
  • 2021-06-30
猜你喜欢
  • 2020-09-29
  • 2021-09-30
  • 2021-08-06
  • 2021-08-06
  • 2018-05-11
  • 2021-05-05
  • 2021-06-14
相关资源
相似解决方案