Meet in the middle is the exponential-search optimization pattern for splitting a hard search space into two smaller halves. Strong candidates explain the exponent trade clearly: 2^n is too large, but 2^(n/2) on two halves plus a smart merge step is often tractable.
Interview lens
A strong explanation should name the invariant, the safe transition, and the cond...