Skip to content

Commit 14ae6a0

Browse files
authored
Update sudoku.py
1 parent 29cb2a8 commit 14ae6a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/SudokuSolver/sudoku.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Take Matrix as input
2-
n=int(input("Enter no of rows and coulomn of sudoku problem : "))
2+
n=int(input(" Enter no of rows and columns of sudoku problem : "))
33
print("Please enter a ",n,"x",n,"Matrix")
44
matrix = [[0 for i in range(n)] for j in range(n)]
55
for i in range(0,n):

0 commit comments

Comments
 (0)