Radix Sort
Radix sort is an integer sorting algorithm that sorts data with integer keys by grouping the keys by individual digits that share the same significant position and value (place value). Radix sort uses Counting Sort as a subroutine to sort an array of numbers
Links
MSD is most significant digit
Seems like LSD-radix-sort is better