Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
141
def
solve(grid):
142
""
"
143
Solve the grid.
144
""
"
145
return
search(parse_grid(grid))
146
147
148
def
some(seq):
Callers
2
time_solve
Function · 0.70
sudoku_solver.py
File · 0.70
Calls
2
parse_grid
Function · 0.85
search
Function · 0.70
Tested by
no test coverage detected