From 0da41f944f1fd70137d895f277e8db8b28674e87 Mon Sep 17 00:00:00 2001 From: Sameer Indarapu Date: Sun, 25 Aug 2019 19:07:53 +0530 Subject: [PATCH] algorithms: remove duplicate question from sorting-searching.md (#134) --- contents/algorithms/sorting-searching.md | 1 - 1 file changed, 1 deletion(-) diff --git a/contents/algorithms/sorting-searching.md b/contents/algorithms/sorting-searching.md index fee769a5..34384011 100644 --- a/contents/algorithms/sorting-searching.md +++ b/contents/algorithms/sorting-searching.md @@ -12,7 +12,6 @@ title: Sorting and Searching - Search for an element in a sorted and rotated array. - [Source](http://blog.gainlo.co/index.php/2017/01/12/rotated-array-binary-search/) - Sort a list where each element is no more than k positions away from its sorted position. -- Search for an item in a sorted, but rotated, array. - Merge two sorted lists together. - Give 3 distinct algorithms to find the K largest values in a list of N items. - Find the minimum element in a sorted rotated array in faster than O(n) time.