Skip to content

Commit 8e8794d

Browse files
fix build
1 parent 14b0967 commit 8e8794d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

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

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

0 commit comments

Comments
 (0)