Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 52c5f7d

Browse files
author
Khanh Do
committed
Remove redundant comments
1 parent 9feec67 commit 52c5f7d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

0189_rotate_array.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ def main():
9393
assert rotate3(list(nums), k) == ans
9494

9595

96-
# Short-circuit cases
9796
short_circuit_cases = [
9897
([1, 2, 3], 0), # k = 0
9998
([], 3), # len(nums) = 0
@@ -106,7 +105,6 @@ def main():
106105
assert rotate3(nums, k) == nums
107106

108107

109-
# Interesting cases
110108
interesting_cases = [
111109
([1, 2, 3, 4], 10, [3, 4, 1, 2]) # k > len(nums)
112110
]

0 commit comments

Comments
 (0)