Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 275 Bytes

File metadata and controls

7 lines (4 loc) · 275 Bytes

Question

A magic index in an array A[0 ... n-1] is defined to be an index such that A[i] = i. Given a sorted array of distinct integers, write a method to find a magic index, if one exists, in array A.

Follow-up Question

What if the values are not distinct?