Sorts integers digit by digit from the least significant to the most significant decimal digit, applying a stable counting sort at each pass so that the order established by previous passes is never disturbed.
Base 10 is the most intuitive base to follow visually, each pass sorts by the ones, tens, hundreds, … digit in turn, making it the clearest choice for illustrating how LSD Radix sort progressively builds global order from local digit passes.