(int x, int y, int height)
| 12 | int height; |
| 13 | |
| 14 | public Point(int x, int y, int height){ |
| 15 | this.x = x; |
| 16 | this.y = y; |
| 17 | this.height = height; |
| 18 | } |
| 19 | } |
| 20 | class Solution { |
| 21 | public int minimumEffortPath(int[][] heights) { |
nothing calls this directly
no outgoing calls
no test coverage detected