Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 235 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 235 Bytes

Sorting-Strange-Alphabet

This is my solution to a problem called "Martian Sorting"

It uses the Radix Sorting method to achieve O(n) sorting complexity. A naive sorting algorithm like Bubble Sort would solve this problem in O(n^2).