You are given a set of tasks, each identified by a unique string, and a list of dependency pairs. Each dependency pair (A, B)
indicates that task A
must be completed before task B
can be started.
Your goal is to write a function or program that returns a valid order in which all tasks can be completed. If there are multiple valid orders, returning any one of them is acceptable. If no valid ordering exists (i.e., due to cyclic dependencies), your function should indicate that no valid schedule is possible.
["task1", "task2", "task3"]
).[ ["task1", "task2"], ["task2", "task3"] ]
), where each pair [A, B]
means that A
must be completed before B
.Given tasks:
["A", "B", "C", "D"]
and dependencies:
[["A", "B"], ["B", "C"], ["A", "C"], ["C", "D"]]
A possible valid ordering is:
["A", "B", "C", "D"]
Good luck!