MCPcopy Create free account
hub / github.com/BeeBombshell/Python-DSA / Knights_tour.py

File Knights_tour.py

Backtracking/Knights_tour.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def knights_tour(n, row, col):
2 visited = [[False]*n for i in range(n)]
3 res = []
4 def path_gen(path,r,c,visited,step):

Callers

nothing calls this directly

Calls 1

knights_tourFunction · 0.85

Tested by

no test coverage detected