auto commit

This commit is contained in:
CyC2018 2018-02-27 15:53:03 +08:00
parent 05247b4e61
commit 599d26aa99

View File

@ -429,7 +429,6 @@ public int minNumberInRotateArray(int[] array) {
```java
private int[][] next = {{0, -1}, {0, 1}, {-1, 0}, {1, 0}};
public boolean hasPath(char[] matrix, int rows, int cols, char[] str){
if(rows == 0 || cols == 0) return false;
char[][] m = new char[rows][cols];