Skip to content

Commit bc6dd02

Browse files
committed
Fix
1 parent 00827c8 commit bc6dd02

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/thealgorithms/divideandconquer/TilingProblem.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ private static void fillBoard(int size, int row, int col, int missingRow, int mi
6464
int half = size / 2;
6565
int t = tile++;
6666

67-
6867
// Top-left quadrant
6968
if (missingRow < row + half && missingCol < col + half) {
7069
fillBoard(half, row, col, missingRow, missingCol);

0 commit comments

Comments
 (0)