Code Room
Code reviewHardcr-g504
Subject IdempotencyLevel Senior–Staff~20 minCommon in Networking & APIs interviewsIndustries Software development, Technology

Question

Review this Python webhook consumer that should process each event exactly once.

What a strong answer looks like

Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix — specific and kind.

Talk through your review
Code to reviewpython
def handle(event):    if seen.exists(event.id):        return    send_fulfillment_email(event)   # external side effect    charge_customer(event)          # external side effect    seen.add(event.id)              # mark processed
Run or narrate your approach, then ask the coach.