Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Parse and Schedule Workflow Commands
00:00
5 left

Parse and Schedule Workflow Commands

MediumPython

Problem

Given a list of workflow step definitions as strings, implement a function that returns the executable steps in a valid order. Each definition has the form "step_name|deps|command", where deps is a comma-separated list of prerequisite step names or - if there are none. A step is executable only if all of its dependencies exist and appear earlier in the returned order. If the workflow contains a cycle, a missing dependency, or duplicate step names, return an empty list.

Constraints

  • 1 <= len(steps) <= 10^4
  • Each string contains exactly two | separators
  • Step names are non-empty and unique in valid input
  • Total number of dependency references across all steps is at most 2 * 10^4

Function Signature

def schedule_workflow(steps):
Interviewer

Your question is Parse and Schedule Workflow Commands. 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.