2596. Check Knight Tour Configuration
There is a knight on an
n x nchessboard. In a valid configuration, the knight starts at the top-left cell of the board and visits every cell on the board exactly once.You are given an
n x ninteger matrixgridconsisting of distinct integers from the range[0, n * n - 1]wheregrid[row][col]indicates that the cell(row, col)is thegrid[row][col]thcell that the knight visited. The moves are 0-indexed.Return
trueifgridrepresents a valid configuration of the knight’s movements orfalseotherwise.Note that a valid knight move consists of moving two squares vertically and one square horizontally, or two squares horizontally and one square vertically. The figure below illustrates all the possible eight moves of a knight from some cell.
1 | class Solution { |