Search⌘ K

Challenge: Sparse Search

Understand how to solve the sparse search problem by developing an algorithm to locate a target string within a sorted array containing empty strings. This lesson helps you build strategies for searching in sparse data structures and prepare for coding interview challenges involving partially empty arrays.

Problem Statement

Implement a function that returns the index of the target string in a sorted, sparsed array of strings. ...