Write a program to check whether a given number is an ugly number.html
Ugly numbers are positive numbers whose prime factors only include 2, 3, 5
.java
Example 1:git
Input: 6 Output: true Explanation: 6 = 2 × 3
Example 2:github
Input: 8 Output: true Explanation: 8 = 2 × 2 × 2
Example 3:app
Input: 14 Output: false Explanation: is not ugly since it includes another prime factor . 147
Note:ide
1
is typically treated as an ugly number.
这道题让咱们检测一个数是否为丑陋数,所谓丑陋数就是其质数因子只能是 2,3,5。那么最直接的办法就是不停的除以这些质数,若是剩余的数字是1的话就是丑陋数了,参见代码以下:post
解法一:url
class Solution { public: bool isUgly(int num) { while (num >= 2) { if (num % 2 == 0) num /= 2; else if (num % 3 == 0) num /= 3; else if (num % 5 == 0) num /= 5; else return false; } return num == 1; } };
咱们也能够换一种写法,分别不停的除以 2,3,5,而且看最后剩下来的数字是否为1便可,参见代码以下:spa
解法二:code
class Solution { public: bool isUgly(int num) { if (num <= 0) return false; while (num % 2 == 0) num /= 2; while (num % 3 == 0) num /= 3; while (num % 5 == 0) num /= 5; return num == 1; } };
Github 同步地址:
https://github.com/grandyang/leetcode/issues/263
相似题目:
参考资料:
https://leetcode.com/problems/ugly-number/
https://leetcode.com/problems/ugly-number/discuss/69225/My-2ms-java-solution
https://leetcode.com/problems/ugly-number/discuss/69214/2-4-lines-every-language
https://leetcode.com/problems/ugly-number/discuss/69332/Simple-java-solution-with-explanation
https://leetcode.com/problems/ugly-number/discuss/69308/Java-solution-greatest-divide-by-2-3-5