What does the The Heist puzzle teach?
Maximize a sum with no two adjacent picks — the House Robber DP. 'Grab the biggest' and 'take every other' both lose.
Why do interviews ask about this?
The House Robber DP is a top interview warmup — maximize a sum with a no-two-adjacent constraint, and explain why greedy fails.
How is it scored?
The engine computes the provably-optimal answer for the exact instance you played (dynamic programming, shortest-path, or exhaustive search — never a heuristic) and scores your attempt as a percentage of it. No login needed to see your score.