Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 208 Bytes

README.md

File metadata and controls

5 lines (5 loc) · 208 Bytes

Knight's Tour

Moves a knight across an nxn board, while enumerating each subsequent move until all squares have been covered. Feat is accomplished using DFS with backtracking and recursion.