You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package class29;
|
|
|
|
public class Problem_0066_PlusOne {
|
|
|
|
public static int[] plusOne(int[] digits) {
|
|
int n = digits.length;
|
|
for (int i = n - 1; i >= 0; i--) {
|
|
if (digits[i] < 9) {
|
|
digits[i]++;
|
|
return digits;
|
|
}
|
|
digits[i] = 0;
|
|
}
|
|
int[] ans = new int[n + 1];
|
|
ans[0] = 1;
|
|
return ans;
|
|
}
|
|
|
|
}
|