Skip to content

Commit c2cf068

Browse files
fix build
1 parent 8e8794d commit c2cf068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_1219.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public int getMaximumGold(int[][] grid) {
6363
}
6464

6565
int[] directions = new int[]{0, 1, 0, -1, 0};
66-
66+
6767
private int backtracking(int[][] grid, int[] start, int gold, boolean[][] visited) {
6868
int max = gold;
6969
for (int i = 0; i < directions.length - 1; i++) {

0 commit comments

Comments
 (0)