We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071a707 commit 119e687Copy full SHA for 119e687
164 Maximum Gap.py
@@ -30,7 +30,6 @@ def radix_sort(nums):
30
if n < 2:
31
return 0
32
nums = radix_sort(nums)
33
- print(nums)
34
max_gap = 0
35
for i in range(1, n):
36
max_gap = max(max_gap, nums[i] - nums[i - 1])
0 commit comments