Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Command Processing for App Open/Close

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Command Processing for App Open/Close. Start with the requirements on the right.

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.

Problem

Write a function that processes a sequence of application commands to open apps, close a specified number of recently opened apps, and clear all currently open applications. Use OPEN app, CLOSE k, and CLEAR commands. Return the remaining app names in opening order. The function accepts a list of command strings and returns a list of strings.

Constraints

  • 1 <= len(commands) <= 5000
  • Each command is either OPEN app, CLOSE k, or CLEAR.
  • app is a non-empty string without spaces.
  • k is a non-negative integer.
  • Applications may be opened more than once.
  • A CLOSE command requesting at least the number of open applications empties the list.

Function Signature

def process_commands(commands):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output