shows a layout of a chess board with a knight and several pawns.
Given that the knight cannot land on any square that has a pawn, but can jump over it, the pawns cannot move, and the knight moves on a chess board as shown in
, what is the
least
number of steps required for the knight to reach square
?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The knight starts at cell e1. The path to follow is: e1 - c2 - a3 - b1 - d2 - e4 - g5 - f7 - d8