(start, end int, nodes []int, edges [][]bool)
| 57 | } |
| 58 | |
| 59 | func DepthFirstSearch(start, end int, nodes []int, edges [][]bool) ([]int, bool) { |
| 60 | return DepthFirstSearchHelper(start, end, nodes, edges, false) |
| 61 | } |
| 62 | |
| 63 | // func main() { |
| 64 | // nodes := []int{ |