Nine Knights: Difference between revisions

From programming_contest
Jump to navigation Jump to search
imported>Kmk21
Created page with "This problem gives us 9 knights on a 5x5 chess board and asks whether any knight can capture any other in 1 move. This problem is trivial and involves simply checking each of..."
 
imported>Kmk21
No edit summary
Line 8: Line 8:
[[Category:Implementation Trivial]]
[[Category:Implementation Trivial]]
[[Category:Grid]]
[[Category:Grid]]
[[Category:Brute Force]]

Revision as of 23:50, 1 December 2017

This problem gives us 9 knights on a 5x5 chess board and asks whether any knight can capture any other in 1 move.

This problem is trivial and involves simply checking each of the 8 possible moves for each knight.