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

Commit 99d47c7

Browse files
python: remove redundant comment
1 parent cd0919d commit 99d47c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/sln_1_100/solution_41_50.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def permute(self, nums):
2424
for n in nums[1:]:
2525
old_res = res
2626
res = []
27-
print(old_res)
27+
2828
for l in old_res:
2929
res.extend(list(map(lambda i: l[:i] + [n] + l[i:], range(len(l) + 1))))
3030
return res

0 commit comments

Comments
 (0)