Sort Colors
Problem statement
Sort the array containing red, white, and blue colors (0, 1, 2) in-place without using the library's sort function. Use the Dutch National Flag algorithm.
Constraints
n == nums.length
1 <= n <= 300
nums[i] is either 0, 1, or 2
...
struglingblogs.hashnode.dev2 min read