Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- greedy
- implement
- 구현
- Number Theory
- Tree
- 코테
- geometry
- bit manipulation
- Counting
- sorting
- Binary Search
- Stack
- database
- Data Structure
- 코딩테스트
- two pointers
- Binary Tree
- 파이썬
- hash table
- array
- SQL
- dynamic programming
- Matrix
- simulation
- 자바
- Math
- string
- java
- Method
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 263. Ugly Number 본문
1. Input
1) int 변수 n
2. Output
1) n이 ugly number면 true, 아니면 false 반환
2) ugly number는 소인수로 2 또는 3 또는 5를 갖는 양의 정수
3. Constraint
1) - 2^31 <= n <= 2^31 - 1
4. Example
Input: n=6 -> Output: true (6=2*3)
Input: n=14 -> Output: false (14=2*7)
5. Code
1) 첫 코드(2022/10/14)
if(n==1) // 1은 소수도 합성수도 아님
return true;
else if(n<=0) // 0 이하의 정수는 ugly number가 될 수 없음
return false;
while(n%2==0)
n /= 2;
while(n%3==0)
n /= 3;
while(n%5==0)
n /= 5;
if(n==1)
return true;
else
return false;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 두 수의 합 (0) | 2022.10.18 |
---|---|
[LeetCode/Easy] 268. Missing Number (0) | 2022.10.14 |
[LeetCode/Easy] 258. Add Digits (0) | 2022.10.14 |
[LeetCode/Easy] 242. Valid Anagram (0) | 2022.10.13 |
[LeetCode/Easy] 231. Power of Two (0) | 2022.10.13 |