brandonchinn178 / circle-of-suck

A website scraping collegiate sports scores and finding a circle of suck
https://brandonchinn178.github.io/circle-of-suck
2 stars 2 forks source link

Document find_cycles #36

Closed brandonchinn178 closed 4 years ago

brandonchinn178 commented 7 years ago

Add to find_cycles docstring describing the algorithm being used.

Are we using DFS? What's wrong running DFS on every vertex to find all the cycles the given vertex is in? It would make the code a lot cleaner if we just use DFS (http://codereview.stackexchange.com/a/78603)