diff --git a/sorting/cycle_sort.cpp b/sorting/cycle_sort.cpp index 98b61deb228..fdd15729242 100644 --- a/sorting/cycle_sort.cpp +++ b/sorting/cycle_sort.cpp @@ -98,6 +98,7 @@ static void test() { assert(std::is_sorted(std::begin(arr2), std::end(arr2))); std::cout << "passed" << std::endl; + // Test 3 // [3, 3, 3, 3] return [3, 3, 3, 3] std::vector array3 = {3, 3, 3, 3}; std::cout << "Test 3... ";