码迷,mamicode.com
首页 > 编程语言 > 详细

[leetcode]Plus One @ Python

时间:2014-09-14 05:47:06      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   div   

题意:

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.

 

 

解题思路:设置一个进位标志CarryFlag就可以了。For example: 999 + 1 = 1000

代码:

class Solution:
    # @param digits, a list of integer digits
    # @return a list of integer digits
    def plusOne(self, digits):
        carryFlag = 1
        for i in reversed(range(len(digits))):
            if digits[i] + carryFlag == 10:
                digits[i] = 0
                carryFlag = 1
            else:
                digits[i] += carryFlag
                carryFlag = 0
        
        if carryFlag == 1:
            digits.insert(0, 1)
        return digits

 

 

[leetcode]Plus One @ Python

标签:style   blog   http   color   io   os   ar   for   div   

原文地址:http://www.cnblogs.com/asrman/p/3970636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!