We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29cb2a8 commit 14ae6a0Copy full SHA for 14ae6a0
Python/SudokuSolver/sudoku.py
@@ -1,5 +1,5 @@
1
#Take Matrix as input
2
-n=int(input("Enter no of rows and coulomn of sudoku problem : "))
+n=int(input(" Enter no of rows and columns of sudoku problem : "))
3
print("Please enter a ",n,"x",n,"Matrix")
4
matrix = [[0 for i in range(n)] for j in range(n)]
5
for i in range(0,n):
0 commit comments