Given an array with 0s, 1s, and 2s, sort them in-place. 0s → red, 1s → white, 2s → blue.
nums = [2,0,2,1,1,0]
[0,0,1,1,2,2]
nums = [2,0,1]
[0,1,2]