Mental Model
Counting sort counts how many times each number appears, then uses these counts to place numbers in order without comparing them.
Analogy: Imagine sorting colored balls by putting them into labeled boxes for each color, then taking them out in order to get a sorted line of balls.
Input array: [4, 2, 2, 8, 3, 3, 1] Count array: [0, 1, 2, 2, 1, 0, 0, 0, 1] Sorted output: []