Exemplo n.º 1
0
 public void Tests(int[] input, int expected)
 {
     Assert.Equal(expected, Q03.FindSmallestInCyclicallySortedArray(input));
 }
Exemplo n.º 2
0
 public void Example()
 {
     int[] input = new int[] { 378, 478, 550, 631, 103, 203, 220, 234, 279, 369 };
     Assert.Equal(4, Q03.FindSmallestInCyclicallySortedArray(input));
 }