Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Command Processing for App Open/Close
00:00
5 left

Command Processing for App Open/Close

MediumPython

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):
Interviewer

Your question is Command Processing for App Open/Close. 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.