forked from TonnyL/Windary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlusOne.py
executable file
·35 lines (28 loc) · 875 Bytes
/
PlusOne.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: UTF-8 -*-
#
# 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.
#
# Python, Python 3 all accepted.
class PlusOne:
def plusOne(self, digits):
"""
:type digits: List[int]
:rtype: List[int]
"""
flag = False
digits[-1] += 1
index = len(digits) - 1
while index >= 0:
if flag:
digits[index] += 1
if digits[index] >= 10:
flag = True
digits[index] %= 10
else:
flag = False
index -= 1
if flag:
digits.insert(0, 1)
return digits