Leetcode 702. Search in a Sorted Array of Unknown Size
Given a sorted ascending array with unknown length accessible only via a bounded reader (out‑of‑range returns a sentinel), find the index of a target or return -1. The key is to quickly locate an interval containing the target (e.g., by exponential/backoff probing) and then run binary search to achieve logarithmic time.
Asked at:
Amazon
Question Timeline
See when this question was last asked and where, including any notes left by other candidates.
0
Early June, 2026
Senior
Hello Interview Premium
Your account is free and you can post anonymously if you choose.