有待总结。 Binary Search: 633, Sum of Square Numbers 475, Heaters 744, Find Smallest Letter Greater than target(LC submissions from original session) 427?? ...
分类:
其他好文 时间:
2021-06-13 09:48:38
阅读次数:
0
链接:https://leetcode-cn.com/problems/plus-one/ 代码 class Solution { public: vector<int> plusOne(vector<int>& digits) { int t = 1; for (int i = digits.si ...
分类:
其他好文 时间:
2020-07-08 21:27:49
阅读次数:
43
题目链接: https://leetcode-cn.com/problems/plus-one/ ...
分类:
编程语言 时间:
2020-03-30 09:58:06
阅读次数:
95
Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer. You may assume the integer do not conta ...
分类:
其他好文 时间:
2020-03-15 13:27:25
阅读次数:
48
1 """ 2 Given a non-empty array of digits representing a non-negative integer, plus one to the integer. 3 The digits are stored such that the most sig ...
分类:
其他好文 时间:
2020-03-06 13:09:03
阅读次数:
61
| 分类 leetcode | Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most signifi... ...
分类:
其他好文 时间:
2020-01-29 12:44:58
阅读次数:
82
我的思路是很简单的,就是从后往前,加一个carry。 大家的思路都是先求出数值,直接+1,然后再转化成list,用str和int cast实现,以下是leetcode里面的几个典型写法 https://leetcode.com/problems/plus-one/discuss/24085/Simp ...
分类:
其他好文 时间:
2020-01-06 09:17:29
阅读次数:
81
LeetCode66. Plus One - Easy LeetCode67. Add Binary - Easy LeetCode69. Sqrt(x) - Easy 二分找 LeetCode70. Climbing Stairs - Easy dp LeetCode71. Simplify Pa ...
分类:
其他好文 时间:
2020-01-04 11:05:42
阅读次数:
105
369. Plus One Linked List 1.第1次while: 从前往后找到第一个不是9的位,记录。 2.第2次while: 此位+1,后面的所有值设为0(因为后面的位都是9)。 返回时注意可能所有位数为9,需要在最前面添加一位,如果dummy.val == 1,则返回dummy位。 时 ...
分类:
其他好文 时间:
2019-12-10 12:53:53
阅读次数:
63
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 d ...
分类:
其他好文 时间:
2019-11-17 10:56:47
阅读次数:
52