[LeetCode/릿코드] 66. Plus One 문제 풀이 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 [JAVA] LeetCode/Easy 2023. 1. 24. 18:49