public void Test120() { int[] nums = { 1, 2, 0 }; SortColors(nums); Assert.IsTrue(ArrayHelper.IsSorted(nums)); }
public void Test012() { int[] nums = { 0, 1, 2 }; SortColors(nums); Assert.IsTrue(ArrayHelper.IsSorted(nums)); }
public void Test201() { int[] nums = { 2, 0, 1 }; SortColors(nums); Assert.IsTrue(ArrayHelper.IsSorted(nums)); }
public void Example1() { int[] nums = { 2, 0, 2, 1, 1, 0 }; SortColors(nums); Assert.IsTrue(ArrayHelper.IsSorted(nums)); }