MCPcopy Index your code
hub / github.com/TheAlgorithms/Python / solve

Function solve

data_structures/arrays/sudoku_solver.py:141–145  ·  view source on GitHub ↗

Solve the grid.

(grid)

Source from the content-addressed store, hash-verified

139
140
141def solve(grid):
142 """
143 Solve the grid.
144 """
145 return search(parse_grid(grid))
146
147
148def some(seq):

Callers 2

time_solveFunction · 0.70
sudoku_solver.pyFile · 0.70

Calls 2

parse_gridFunction · 0.85
searchFunction · 0.70

Tested by

no test coverage detected