Challenge: Search in a Rotated List
Let's write a function to search in a sorted and rotated list.
We'll cover the following...
Problem statement
Given a sorted list of n
integers that has been rotated an unknown number of times, write some code to find an element in the list. You may assume that ...