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
- implement
- geometry
- two pointers
- SQL
- Data Structure
- Matrix
- bit manipulation
- 구현
- java
- simulation
- sorting
- Binary Tree
- string
- hash table
- Binary Search
- Counting
- Tree
- Number Theory
- Stack
- Math
- 코딩테스트
- Method
- Class
- 자바
- greedy
- 코테
- array
- dynamic programming
- database
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 66. Plus One 본문
1. Input
1) 정수 배열 digits
2. Output
1) digits가 나타내는 숫자에 1을 더한 숫자를 배열로 표현한 결과
- digits가 나타내는 숫자가 매우 클 수도 있다.
3. Constraint
1) 1 <= digits.length <= 100
2) 0 <= digits[i] <= 9
4. Example
Input: digits = [4,3,2,1] -> Output: [4,3,2,2]
Input: digits = [9] -> Output: [1,0]
5. Code
1) 첫 코드(2023/01/12)
import java.util.*;
Stack<Integer> s = new Stack<Integer>();
digits[digits.length-1]++;
boolean carry = digits[digits.length-1]>=10 ? true : false;
s.push(digits[digits.length-1]%10);
for(int i=digits.length-2 ; i>=0 ; i--){
if(carry) digits[i]++;
carry = digits[i]>=10 ? true : false;
s.push(digits[i]%10);
}
if(carry) s.push(1);
int[] answer = new int[s.size()];
for(int i=0 ; i<answer.length ; i++){
answer[i] = s.pop();
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2114. Maximum Number of Words Found in Sentences (0) | 2023.01.13 |
---|---|
[LeetCode/Easy] 2108. Find First Palindromic String in the Array (0) | 2023.01.13 |
[LeetCode/Easy] 2103. Rings and Rods (0) | 2023.01.12 |
[LeetCode/Easy] 2089. Find Target Indices After Sorting Array (0) | 2023.01.12 |
[LeetCode/Easy] 2068. Check Whether Two Strings are Almost Equivalent (0) | 2023.01.12 |