博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-Strobogrammatic Number
阅读量:5332 次
发布时间:2019-06-15

本文共 1288 字,大约阅读时间需要 4 分钟。

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.

Solution:

1 public class Solution { 2     public boolean isStrobogrammatic(String num) { 3         int p1 = 0, p2 = num.length() - 1; 4         while (p1 <= p2) { 5             if (!isValidPair(num.charAt(p1), num.charAt(p2))) 6                 return false; 7             p1++; 8             p2--; 9         }10         return true;11     }12 13     public boolean isValidNum(int num) {14         if (num == 0 || num == 1 || num == 6 || num == 8 || num == 9)15             return true;16 17         return false;18     }19 20     public boolean isValidPair(char c1, char c2) {21         int num1 = c1 - '0';22         int num2 = c2 - '0';23         if (!isValidNum(num1) || !isValidNum(num2))24             return false;25 26         if ((num1 == 6 && num2 != 9) || (num1 == 9 && num2 != 6)) {27             return false;28         } else if (num1 + num2 != 15 && num1 != num2) {29             return false;30         }31         return true;32     }33 }

 

转载于:https://www.cnblogs.com/lishiblog/p/5799131.html

你可能感兴趣的文章
Ubuntu改坏sudoers后无法使用sudo的解决办法
查看>>
NEYC 2017 游记
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
redux-effect
查看>>
Swift和OC混编
查看>>
Android轻量级的开源缓存框架ASimpleCache
查看>>
他山之石:加载图片的一个小问题
查看>>
shell - 常识
查看>>
mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
查看>>
分层图最短路【bzoj2763】: [JLOI2011]飞行路线
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
字典常用方法
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
bzoj1048 [HAOI2007]分割矩阵
查看>>
Java中的编码
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>