Skip to content

Commit 119e687

Browse files
committed
Clean up for 164
1 parent 071a707 commit 119e687

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

164 Maximum Gap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def radix_sort(nums):
3030
if n < 2:
3131
return 0
3232
nums = radix_sort(nums)
33-
print(nums)
3433
max_gap = 0
3534
for i in range(1, n):
3635
max_gap = max(max_gap, nums[i] - nums[i - 1])

0 commit comments

Comments
 (0)