Code RoomCheck-then-act on concurrent map
MediumPrep Room Coding #4150

Check-then-act on concurrent map

Vibe & agenticConcurrencyMid–Senior~18 min

An AI wrote this Java session registry, using ConcurrentHashMap because it's thread-safe. Review whether the operations are actually safe under concurrency.

What can go wrong despite using a concurrent map, and what's the fix?

Implement
assign_session_ids(calls: list[str]) → list[int]
Examples
in[["u1","u1","u2"]]out[1,1,2]
in[["u1","u1|end","u1"]]out[1,1,2]
What a strong answer looks like

Treat the AI’s output as a draft to verify, not an answer to trust. Name the specific flaw and the input that triggers it, say how you’d catch it (tests, edge cases, reading critically), and how you’d re-prompt or decompose to get it right.

0:00 of about 18 min

Vibe & agentic: describe the solution in plain language (or narrate it) and the coach grades your approach.

Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.