Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Automate a Workflow
00:00
5 left

Automate a Workflow

HardPython

Problem

Can you demonstrate how to automate a specific application workflow?

Implement a function that orders workflow steps while respecting prerequisite dependencies. Return the lexicographically smallest valid order, or an empty list if the dependencies form a cycle.

Input consists of unique step names and dependency pairs [ prerequisite, step ]. The function must return a list of step names.

Constraints

  • 0 <= steps.length <= 1000
  • Each step name is unique and non-empty
  • Each dependency contains exactly two valid step names
  • A dependency [prerequisite, step] means prerequisite must occur before step
  • Duplicate dependency pairs are not present
  • Return the lexicographically smallest valid order

Function Signature

def workflow_order(steps, dependencies):
Interviewer

Your question is Automate a Workflow. 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.