Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ml):$263.ugly-number.md #416

Merged
merged 1 commit into from
Aug 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion problems/263.ugly-number.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Input is within the 32-bit signed integer range: [−231, 231 − 1].

## 代码

* 语言支持:JS, Python
* 语言支持:JS, C++, Java, Python

Javascript Code:

Expand Down Expand Up @@ -110,6 +110,43 @@ var isUgly = function(num) {
- 时间复杂度:$O(logN)$
- 空间复杂度:$O(logN)$

C++ Code:

```c++
class Solution {
public:
bool isUgly(int num) {
int ugly[] = {2,3,5};
for(int u : ugly)
{
while(num%u==0 && num%u < num)
{
num/=u;
}
}
return num == 1;
}
};
```

Java Code:

```java
class Solution {
public boolean isUgly(int num) {
int [] ugly = {2,3,5};
for(int u : ugly)
{
while(num%u==0 && num%u < num)
{
num/=u;
}
}
return num == 1;
}
}
```

Python Code:

```python
Expand Down