Example #1
0
        public void FindElementInSortedRotatedArray_NotFound_Test()
        {
            var input = new[] { 15, 16, 19, 20, 25, 1, 3, 4, 5, 7, 10, 14 };

            var index = SortService.FindElementInSortedRotatedArray(input, 111);

            Assert.AreEqual(-1, index);
        }