> For the complete documentation index, see [llms.txt](https://docs-57.gitbook.io/data-structure-and-algorithms/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-57.gitbook.io/data-structure-and-algorithms/problems/graph/check-knight-tour-configuration.md).

# Check Knight Tour Configuration

There is a knight on an `n x n` chessboard. 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 n` integer matrix `grid` consisting of distinct integers from the range `[0, n * n - 1]` where `grid[row][col]` indicates that the cell `(row, col)` is the `grid[row][col]th` cell that the knight visited. The moves are **0-indexed**.

Return `true` *if* `grid` *represents a valid configuration of the knight's movements or* `false` *otherwise*.

**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.

![](https://assets.leetcode.com/uploads/2018/10/12/knight.png)

&#x20;

**Example 1:**

![](https://assets.leetcode.com/uploads/2022/12/28/yetgriddrawio-5.png)

<pre><code><strong>Input: grid = [[0,11,16,5,20],[17,4,19,10,15],[12,1,8,21,6],[3,18,23,14,9],[24,13,2,7,22]]
</strong><strong>Output: true
</strong><strong>Explanation: The above diagram represents the grid. It can be shown that it is a valid configuration.
</strong></code></pre>

**Example 2:**

![](https://assets.leetcode.com/uploads/2022/12/28/yetgriddrawio-6.png)

<pre><code><strong>Input: grid = [[0,3,6],[5,8,1],[2,7,4]]
</strong><strong>Output: false
</strong><strong>Explanation: The above diagram represents the grid. The 8th move of the knight is not valid considering its position after the 7th move.
</strong></code></pre>

&#x20;

**Constraints:**

* `n == grid.length == grid[i].length`
* `3 <= n <= 7`
* `0 <= grid[row][col] < n * n`
* All integers in `grid` are **unique**.

```csharp

public class Solution
{
    private (int, int)[] directions = new (int, int)[] { (-1, -2), (1, -2), (2, -1), (2, 1), (1, 2), (-1, 2), (-2, 1), (-2, -1) };

    public bool CheckValidGrid(int[][] grid)
    {
        int n = grid.Length;
        bool[,] visited = new bool[n, n];
        return DFS(grid, visited, 0, 0, 0, n * n);
    }

    private bool DFS(int[][] grid, bool[,] visited, int x, int y, int currentMove, int totalMoves)
    {
        // check if reached at end.
        if (currentMove == totalMoves)
        {
            return true;
        }

        // check Knight position is valid.
        if (x < 0 || y < 0 || x >= grid.Length || y >= grid[0].Length || visited[x, y] || grid[x][y] != currentMove)
        {
            return false;
        }

        visited[x, y] = true;
        foreach (var (dx, dy) in directions)
        {
            if (DFS(grid, visited, x + dx, y + dy, currentMove + 1, totalMoves))
            {
                return true;
            }
        }
        visited[x, y] = false; // backtrack
        return false;
    }
}

```
