66. Plus One

来源:互联网 发布:淘宝零点抢购怎么抢 编辑:程序博客网 时间:2024/05/29 12:02

Given a non-negative integer represented as a non-empty array of digits, plus one to the integer.

You may assume the integer do not contain any leading zero, except the number 0 itself.

The digits are stored such that the most significant digit is at the head of the list.


每个非负整数用数组表示 高位的在前边

code:

class Solution(object):
    def plusOne(self, digits):
        """
        :type digits: List[int]
        :rtype: List[int]
        """
        
        return [int(x) for x in  str(int("".join([str(x) for x in digits]))+1)]