Code RoomIsochrone service
HardPrep Room Coding #3532

Isochrone service

System designAlgorithms & data structuresSenior–Staff~50 min

Design an isochrone service that answers 'what area can I reach within 15 minutes by car (or walking, or transit) from this point, given current traffic?' Used for store-coverage analysis, real-estate search, and 'restaurants reachable in 20 min'. It must handle arbitrary origin points, multiple travel modes, live traffic, and return a polygon in <500ms, at thousands of requests/second. Describe the graph traversal that computes reachability, how you turn reached nodes into a polygon, the live-traffic and multi-mode handling, and the precompute vs on-the-fly trade-off.

What a strong answer looks like

Clarify scale and constraints first. Propose a clean component breakdown, then go deep on the hard parts (data model, bottlenecks, consistency, failure modes) and name the trade-offs you are making.

Clarify5:30 left
Estimate5:30 planned
Design16:30 planned
Deep dive13:30 planned
Failure9:00 planned
0:00
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.