Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Given a non-empty array of digits representing a non-negative integer, plus 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 contain a single digit.

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

Example 1:

Input: [1,2,3] Output: [1,2,4] Explanation: The array represents the integer 123. Example 2:

Input: [4,3,2,1] Output: [4,3,2,2] Explanation: The array represents the integer 4321.

My code:

class Solution:
    def plusOne(self, digits):
        """
        :type digits: List[int]
        :rtype: List[int]
        """
        if len(digits)==0:
            return [1]
        if len(digits)==1:
            value=digits[0]
            if value+1<10:
                return [value+1]
            else:
                return [1,0]
        value1=digits[-1]
        value2=digits[-2]
        if value1<9:
            digits[-1]+=1
            return digits
        else:
            add_label=True
            for j in range(-1,-len(digits)-1,-1):
                if digits[j]==9 and add_label:
                    digits[j]=0
                    add_label=True
                    continue
                digits[j]+=1
                break
            if digits[0]==0 and add_label:
                new_digits=[]
                new_digits.append(1)
                new_digits+=digits
                #print(digits)
                return new_digits
            else:    
                return digits

Solution: https://leetcode.com/problems/plus-one/