8000 update at 2018-10-24 · Frantol910/leetcode@6196d5b · GitHub
[go: up one dir, main page]

Skip to content

Commit 6196d5b

Browse files
committed
update at 2018-10-24
1 parent 6fb6f47 commit 6196d5b

File tree

11 files changed

+46
-27
lines changed

11 files changed

+46
-27
lines changed

012-integer-to-roman/integer-to-roman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#
4949
# Input: 58
5050
# Output: "LVIII"
51-
# Explanation: C = 100, L = 50, XXX = 30 and III = 3.
51+
# Explanation: L = 50, V = 5, III = 3.
5252
#
5353
#
5454
# Example 5:

083-remove-duplicates-from-sorted-list/remove-duplicates-from-sorted-list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Input: 1->1->2->3->3
1717
# Output: 1->2->3
1818
#
19+
#
1920

2021

2122
# Definition for singly-linked list.

136-single-number/single-number.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# Input: [4,1,2,1,2]
2121
# Output: 4
2222
#
23+
#
2324

2425

2526
class Solution(object):

189-rotate-array/rotate-array.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
# Try to come up as many solutions as you can, there are at least 3 different ways to solve this problem.
3131
# Could you do it in-place with O(1) extra space?
3232
#
33-
#
3433

3534

3635
class Solution(object):

227-basic-calculator-ii/basic-calculator-ii.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
# You may assume that the given expression is always valid.
3232
# Do not use the eval built-in library function.
3333
#
34-
#
3534

3635

3736
class Solution(object):

263-ugly-number/ugly-number.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
# 1 is typically treated as an ugly number.
3535
# Input is within the 32-bit signed integer range: [−231,  231 − 1].
3636
#
37-
#
3837

3938

4039
class Solution(object):

264-ugly-number-ii/ugly-number-ii.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# 1 is typically treated as an ugly number.
1919
# n does not exceed 1690.
2020
#
21-
#
2221

2322

2423
class Solution(object):

324-wiggle-sort-ii/wiggle-sort-ii.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
# You may assume all input has valid answer.
2020
#
2121
# Follow Up:
22-
# Can you do it in O(n) time and/or in-place with O(1) extra space?
23-
#
22+
# Can you do it in O(n) time and/or in-place with O(1) extra space?
2423

2524

2625
class Solution(object):

335-self-crossing/self-crossing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
# Output: true
4747
# Explanation: self crossing
4848
#
49-
#
5049

5150

5251
class Solution(object):

README.md

Lines changed: 33 additions & 17 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
0