Skip to content

Latest commit

 

History

History

challenge-21

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Sorting a list with 3 unique numbers

This problem was asked by Google.

Description

Given a list of numbers with only 3 unique numbers (1, 2, 3), sort the list in O(n) time.

Example

Input: [3, 3, 2, 1, 3, 2, 1]
Output: [1, 1, 2, 2, 3, 3, 3]