Skip to content

Instantly share code, notes, and snippets.

@thomasvn
thomasvn / radix.py
Last active March 18, 2021 19:26
Radix Sort Implementation in Python
#!/usr/bin/python
import time
# Function that takes a list and sorts using radix sort implementation
def radixsort(toBeSorted):
digit = 1
atTheEnd = False
r = 10 # The base of the numbers we choose to sort