radix sorting implementations for strings and integers in <100 loc
Find a file
2026-03-18 12:17:43 +10:30
go.mod Add source 2026-03-18 12:17:43 +10:30
LICENSE Add source 2026-03-18 12:17:43 +10:30
README.md Add source 2026-03-18 12:17:43 +10:30
sort.go Add source 2026-03-18 12:17:43 +10:30

radixsort

Silly but simple radix-based sorting implementations for strings and integers in <100 loc.

Slightly worse than slices.Sort (PDQSort) on strings, much worse on integers.