Skip to content

Commit f17212a

Browse files
committed
Small comment fix
1 parent f39ab3e commit f17212a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/others/Sudoku.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private Sudoku() {
2121
* @param row The row index where the number is to be placed.
2222
* @param col The column index where the number is to be placed.
2323
* @param num The number to be placed on the board.
24-
* @return True if the placement is safe, false otherwise.
24+
* @return True if the placement is safe, otherwise false.
2525
*/
2626
public static boolean isSafe(int[][] board, int row, int col, int num) {
2727
// Check the row for duplicates

0 commit comments

Comments
 (0)