(target int, slice []int)
| 16 | } |
| 17 | |
| 18 | func NotExist(target int, slice []int) bool { |
| 19 | for i := 0; i < len(slice); i++ { |
| 20 | if slice[i] == target { |
| 21 | return false |
| 22 | } |
| 23 | } |
| 24 | return true |
| 25 | } |
| 26 | |
| 27 | func DepthFirstSearchHelper(start, end int, nodes []int, edges [][]bool, showroute bool) ([]int, bool) { |
| 28 | var route []int |
no outgoing calls
no test coverage detected