zoukankan      html  css  js  c++  java
  • 246.Strobogrammatic Number




    /*
    * 246.Strobogrammatic Number * 2016-6-18 by Mingyang * 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. * 我开始做没想到用hashmap,这么会使代码非常简单 */ 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; }
  • 相关阅读:
    CF1450H2
    CF1379F2
    CF1217F
    CF1393E2
    CF1510H
    CF1514E
    CF1515G
    CF1516E
    在pycharm中导入PyMysql出错,解决方法
    搭建fastdfs文件服务器
  • 原文地址:https://www.cnblogs.com/zmyvszk/p/5597374.html
Copyright © 2011-2022 走看看