← 返回 bytedance 的题目列表Plus One
类型:online_judge
Given a non-empty array of decimal digits representing a non-negative integer, increment one to the integer. The digits are stored such that the most significant digit is at the head of the list, and each element in the array contains a single digit. You may assume the integer does not contain any leading zero, except the number 0 itself.
Input Format
A non-empty array digits representing a non-negative integer.
Output Format
Return a list representing the integer incremented by one.
Example
Input: [1,2,3] Output: [1,2,4] Explanation: The array represents the integer 123.
Input: [4,3,2,1] Output: [4,3,2,2] Explanation: The array represents the integer 4321.
Constraints
Array length <= 100
Each element digits[i] is in the range [0, 9].
Example
Input
[1, 2, 3]