Challenge 2: Implement Depth-First Graph Traversal
Implement depth first graph traversal
Problem statement
You have to implement the depth-first traversal in Python.
To solve this problem, the previously implemented graph class is already prepended.
Input
A graph ...