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
- hash table
- 코테
- Tree
- 자바
- string
- Method
- two pointers
- 구현
- Matrix
- dynamic programming
- Number Theory
- Math
- java
- sorting
- bit manipulation
- geometry
- Counting
- greedy
- implement
- SQL
- Stack
- array
- 코딩테스트
- Data Structure
- database
- Binary Tree
- Class
- simulation
- 파이썬
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1317. Convert Integer to the Sum of Two No-Zero Integers 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1317. Convert Integer to the Sum of Two No-Zero Integers
무지맘 2023. 4. 10. 22:431. Input
1) int n
2. Output
1) 다음 조건을 만족하는 a와 b를 찾아 배열에 담아 반환
- a, b는 10진수로 표현했을 때 0이 없는 양의 정수이다.
- a+b == n
3. Constraint
1) 2 <= n <= 10^4
2) 답은 여러개 일 수 있고, 그 중 하나를 반환하면 된다.
4. Example
Input: n = 11 -> Output: [2,9]
설명: [3,8], [4,7], [5,6], [6,5], [7,4], [8,3], [9,2]도 가능하다.
5. Code
1) 첫 코드(2023/04/10)
int[] answer = new int[2];
for(int i=1 ; i<n ; i++){
boolean nozero = true;
int x = i;
while(x>0 && nozero){
if(x%10==0) nozero = false;
x /= 10;
}
if(nozero){ // i에 0이 없다면 n-i도 검사
x = n - i;
while(x>0 && nozero){
if(x%10==0) nozero = false;
x /= 10;
}
}
if(nozero){ // 둘다 0이 없다면 답으로 반환
answer[0] = i; answer[1] = n-i;
break;
}
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1304. Find N Unique Integers Sum up to Zero (0) | 2023.04.11 |
---|---|
[LeetCode/Easy] 1309. Decrypt String from Alphabet to Integer Mapping (0) | 2023.04.11 |
[백준 온라인 저지] 14425. 문자열 집합 (0) | 2023.04.08 |
[백준 온라인 저지] 10815. 숫자 카드 (0) | 2023.04.08 |
[백준 온라인 저지] 1427. 소트인사이드 (0) | 2023.04.07 |