(r, c int)
| 158 | } |
| 159 | |
| 160 | func reachedPacific(r, c int) bool { |
| 161 | return r < 0 || c < 0 |
| 162 | } |
| 163 | |
| 164 | func waterCanFlow(matrix [][]int, pr, pc, ro, co, rd, cd int) bool { |
| 165 | // if the next flow destination has reached pacific, atlantic, |
no outgoing calls
no test coverage detected