<LeetCode><Easy> 66 PlusOne

来源:互联网 发布:java判断数字奇偶 编辑:程序博客网 时间:2024/05/16 05:51

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

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

题意:一个整数按位存储于一个int数组中,排列顺序为:最高位在array[0] ,最低位在[n-1],例如:98,存储为:array[0]=9; array[1]=8;

#Python2  52ms

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

#按位



0 0
原创粉丝点击