给出用数字数组表示的一个非负整数,请对该整数加1。
示例1
输入
[1]
输出
[2]
示例2
输入
[1,2,3]
输出
[1,2,4]
加载中...
import java.util.*; public class Solution { /** * * @param digits int整型一维数组 * @return int整型一维数组 */ public int[] plusOne (int[] digits) { // write code here } }
class Solution { public: /** * * @param digits int整型vector * @return int整型vector */ vector
plusOne(vector
& digits) { // write code here } };
# # # @param digits int整型一维数组 # @return int整型一维数组 # class Solution: def plusOne(self , digits ): # write code here
/** * * @param digits int整型一维数组 * @return int整型一维数组 */ function plusOne( digits ) { // write code here } module.exports = { plusOne : plusOne };
# # # @param digits int整型一维数组 # @return int整型一维数组 # class Solution: def plusOne(self , digits ): # write code here
package main /** * * @param digits int整型一维数组 * @return int整型一维数组 */ func plusOne( digits []int ) []int { // write code here }
[1]
[2]
[1,2,3]
[1,2,4]