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