Find All Possible Tasks

Graphs Contest Easy

You are given a set of tasks and their required resources. Each task has a list of resources that are needed to complete it, and some of the resources might themselves be tasks that need to be completed first. You are also given a set of resources that you already have.

Your task is to determine which tasks can be completed based on the resources you already have, including the tasks that can be completed indirectly by first completing other tasks.

Return a list of tasks that you can complete. You may return the answer in any order.

Constraints

n == tasks.length == resources.length

1 <= n <= 100

1 <= resources[i].length, available.length <= 500

1 <= tasks[i].length, resources[i][j].length, available[k].length <= 10

All the values of tasks and available combined are unique.

Each resources[i] does not contain any duplicate values.


Company Tags

[ ]