首页 > 代码库 > 246. Strobogrammatic Number
246. Strobogrammatic Number
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.246. Strobogrammatic Number
public class Solution { public boolean isStrobogrammatic(String nums) { // 6 - > 9 , 9 - > 6 , 1 - > 1, 8 - > 8, 0 -> 0 int array[] = {0, 1, 0, 0, 0, 0 ,9, 0, 8, 6}; String res = ""; for(int i = nums.length() - 1 ; i >= 0; i--){ if(nums.charAt(i) - ‘0‘ >= 0 && nums.charAt(i) - ‘0‘ <= 9 ){ res = res + array[nums.charAt(i) - ‘0‘] ; } else return false; } return res.equals(nums); } //2 pointer O(n/2) ---method 2 public boolean isStrobogrammatic(String nums) { int i = 0; int j = nums.length() - 1; while(i <= j){ if(isPair(nums.charAt(i), nums.charAt(j))){ i++; j--; } else return false; } return true; } public boolean isPair(char num1 , char num2){ if(num1 == ‘6‘ && num2 == ‘9‘ || num1 == ‘9‘ && num2 == ‘6‘ || num1 == ‘8‘ && num2 == ‘8‘ || num1 == ‘1‘ && num2 == ‘1‘|| num1 == ‘0‘ && num2 == ‘0‘) return true; else return false; }}
246. Strobogrammatic Number
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。