728x90
반응형
문제
반응형
풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import java.math.BigInteger;
import java.util.Arrays;
class Solution {
public int[] plusOne(int[] digits) {
String num = "";
for(int i=0; i<digits.length; i++) {
num += digits[i];
}
BigInteger big = new BigInteger(num);
BigInteger plus = big.add(BigInteger.ONE);
String str = plus.toString();
String[] strArr = str.split("");
int[] answer = Arrays.stream(strArr)
.mapToInt(Integer::parseInt)
.toArray();
return answer;
}
}
|
cs |
728x90
반응형
'[JAVA] LeetCode > Easy' 카테고리의 다른 글
[LeetCode/릿코드] 69. Sqrt(x) (0) | 2023.01.24 |
---|---|
[LeetCode/릿코드] 67. Add Binary (0) | 2023.01.24 |
[LeetCode/릿코드] 58. Length of Last Word (0) | 2023.01.24 |
[LeetCode/릿코드] 35. Search Insert Position (0) | 2023.01.13 |
[LeetCode/릿코드] 27. Remove Element (0) | 2023.01.13 |