Skip to content

Commit 0347240

Browse files
committed
commit
1 parent 0e11cf4 commit 0347240

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pydatastructs/linear_data_structures/algorithms.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,7 +1979,6 @@ def radix_sort(array, *args, **kwargs):
19791979
"""
19801980
start = int(kwargs.get('start', 0))
19811981
end = int(kwargs.get('end', len(array) - 1))
1982-
comp = kwargs.get('comp', lambda u, v: u <= v)
19831982

19841983
n = end - start + 1
19851984
max_val = array[start]

0 commit comments

Comments
 (0)