-
Notifications
You must be signed in to change notification settings - Fork 0
/
66-plus-one.py
66 lines (60 loc) · 1.59 KB
/
66-plus-one.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# @lc app=leetcode.cn id=66 lang=python3
#
# [66] 加一
#
# https://leetcode-cn.com/problems/plus-one/description/
#
# algorithms
# Easy (41.53%)
# Likes: 373
# Dislikes: 0
# Total Accepted: 95.1K
# Total Submissions: 227K
# Testcase Example: '[1,2,3]'
#
# 给定一个由整数组成的非空数组所表示的非负整数,在该数的基础上加一。
#
# 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。
#
# 你可以假设除了整数 0 之外,这个整数不会以零开头。
#
# 示例 1:
#
# 输入: [1,2,3]
# 输出: [1,2,4]
# 解释: 输入数组表示数字 123。
#
#
# 示例 2:
#
# 输入: [4,3,2,1]
# 输出: [4,3,2,2]
# 解释: 输入数组表示数字 4321。
#
# 2019-11-25 11:32 - 11:51 97.32 %
# 边界点:进一位的处理,进一位之后已经到头了的处理
# 延伸:这里因为只是加一,所以每次的进一位的数字只会是1,但如果是两个数字相加,就不会是这样了,就要考虑相加之后,这时候大概是应该取商
#
#
# @lc code=start
class Solution:
def plusOne(self, digits: List[int]) -> List[int]:
length = len(digits)
if length == 0:
return [1]
end = length - 1
sum = 1
while sum > 0 and end >= 0:
sum += digits[end]
if sum < 10:
digits[end] = sum
sum = 0
else:
digits[end] = sum - 10
end -= 1
sum = 1
if sum > 0:
digits.insert(0, sum)
return digits
# @lc code=end