(String[] args)
| 33 | } |
| 34 | |
| 35 | public static void main(String[] args) { |
| 36 | Solution solution = new Solution(); |
| 37 | int[][] obstacleGrid = {{0, 0, 0}, {0, 1, 0}, {0, 0, 0}}; |
| 38 | System.out.println(solution.uniquePathsWithObstacles(obstacleGrid)); |
| 39 | } |
| 40 | } |
nothing calls this directly
no test coverage detected