Movie Booking System
Medium📝 Description
Given available movies, book a movie and return remaining slots.
Input Format
{"Action": ["Movie1", "Movie2"], "Comedy": ["Movie3"]}, genre="Action", booked="Movie1"
Output Format
{"Action": ["Movie2"], "Comedy": ["Movie3"]}
Constraints
Number of movies ≤ 1000
🔍 Sample Input
{"Action": ["Movie1", "Movie2"], "Comedy": ["Movie3"]}, "Action", "Movie1"
✅ Sample Output
{"Action": ["Movie2"], "Comedy": ["Movie3"]}
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run