Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Seat Booking System Coding
00:00
5 left

Seat Booking System Coding

EasyPython

Problem

Implement a seat booking system for an Upstox event. Seats are numbered from 1 to capacity, and each user may hold at most one seat at a time.

Process operations in order. For a reserve operation, assign the smallest available seat to the user. Return the assigned seat number, or -1 if the user already has a seat or no seats remain. For a cancel operation, release the user's seat and return its number, or return -1 if the user has no active reservation.

Use a set to track available seats and appropriate set or map structures to prevent duplicate active reservations.

Formal Specification

Implement seat_booking(capacity, operations).

  • capacity is an integer.
  • operations is a list of two-item lists: [action, user].
  • action is either "reserve" or "cancel".
  • user is a non-empty string.
  • Return a list of integers, with one result for each operation.

Constraints

  • 1 <= capacity <= 10^5
  • 1 <= len(operations) <= 2 * 10^5
  • Each operation has exactly two values: action and user
  • action is either reserve or cancel
  • Each user identifier contains at most 30 lowercase letters

Function Signature

def seat_booking(capacity, operations):
Interviewer

Your question is Seat Booking System Coding. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.