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
- Binary Tree
- hash table
- 자바
- sorting
- database
- two pointers
- java
- greedy
- simulation
- implement
- Binary Search
- Matrix
- Counting
- array
- 구현
- string
- Stack
- Math
- 코딩테스트
- 코테
- Class
- dynamic programming
- Data Structure
- bit manipulation
- SQL
- 파이썬
- geometry
- Tree
- Number Theory
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1952. Three Divisors 본문
1. Input
1) 정수 n
2. Output
1) n의 양의 약수의 개수가 3개라면 true, 아니면 false를 반환
3. Constraint
1) 1 <= n <= 10^4
4. Example
Input: n = 2 -> Output: false
Input: n = 4 -> Output: true
5. Code
1) 첫 코드(2022/07/12)
int div = 0;
for(int i=1 ; i<n ; i++){
if(n%i==0) div++;
if(div>3) return false;
}
return (div+1)==3;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1967. Number of Strings That Appear as Substrings in Word (0) | 2023.01.09 |
---|---|
[LeetCode/Easy] 1961. Check If String Is a Prefix of Array (0) | 2023.01.08 |
[LeetCode/Easy] 1941. Check if All Characters Have Equal Number of Occurrences (0) | 2023.01.08 |
[LeetCode/Easy] 1935. Maximum Number of Words You Can Type (0) | 2023.01.08 |
[LeetCode/Easy] 1929. Concatenation of Array (0) | 2023.01.08 |