You are given a list of tasks required to complete a project. Each task is represented as an object with the following properties:
Assume that:
Task: Write a function that takes in the list of tasks and returns the minimum total time required to complete all tasks.
Example:
Consider the following tasks:
id = "A"
, duration = 3
, dependencies = []
id = "B"
, duration = 2
, dependencies = ["A"]
id = "C"
, duration = 4
, dependencies = ["A"]
id = "D"
, duration = 1
, dependencies = ["B", "C"]
A possible schedule would be:
The total time required to complete all tasks is 8.
Your implementation should correctly compute this minimum time based on any valid list of tasks.