# 353. Design Snake Game

Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the game.

The snake is initially positioned at the top left corner (0,0) with length = 1 unit.

You are given a list of food's positions in row-column order. When a snake eats the food, its length and the game's score both increase by 1.

Each food appears one by one on the screen. For example, the second food will not appear until the first food was eaten by the snake.

When a food does appear on the screen, it is guaranteed that it will not appear on a block occupied by the snake.

Example:

Given width = 3, height = 2, and food = \[\[1,2],\[0,1]].

Snake snake = new Snake(width, height, food);

Initially the snake appears at position (0,0) and the food at (1,2).

|S| | | | | |F|

snake.move("R"); -> Returns 0

\| |S| | | | |F|

snake.move("D"); -> Returns 0

\| | | | | |S|F|

snake.move("R"); -> Returns 1 (Snake eats the first food and right after that, the second food appears at (0,1) )

\| |F| | | |S|S|

snake.move("U"); -> Returns 1

\| |F|S| | | |S|

snake.move("L"); -> Returns 2 (Snake eats the second food)

\| |S|S| | | |S|

snake.move("U"); -> Returns -1 (Game over because snake collides with border)

Credits:Special thanks to @elmirap for adding this problem and creating all test cases.

## Solution <a href="#solution" id="solution"></a>

```java
public class SnakeGame {

  int width;
    int height;
    int[][] food;
    int count;
    List<Point> points;

    public SnakeGame(int width, int height, int[][] food) {
        this.width = width;
        this.height = height;
        this.food = food;
        count = 0;

        points = new ArrayList<>();
        points.add(new Point(0, 0));
    }

    /** Moves the snake.
     @param direction - 'U' = Up, 'L' = Left, 'R' = Right, 'D' = Down
     @return The game's score after the move. Return -1 if game over.
     Game over when snake crosses the screen boundary or bites its body. */
    public int move(String direction) {
        Point firstPoint = points.get(0);
        int nextX = firstPoint.x;
        int nextY = firstPoint.y;

        switch (direction) {
            case "U":
                nextX -= 1;
                break;
            case "D":
                nextX += 1;
                break;
            case "R":
                nextY += 1;
                break;
            case "L":
                nextY -= 1;
                break;
        }


        if (!validate(nextX, nextY, width, height, points)) {
            return -1;
        }

        if (count < food.length && nextX == food[count][0] && nextY == food[count][1]) {
            count++;
        } else {
            points.remove(points.size() - 1);
        }

        points.add(0, new Point(nextX, nextY));
        return count;

    }

    private boolean validate(int x, int y, int width, int height, List<Point> points) {
        if (x < 0 || x >= height || y < 0 || y >= width) {
            return false;
        }

        for (int i = 0; i < points.size() - 1; i++) {
            Point cur = points.get(i);
            if (x == cur.x && y == cur.y) {
                return false;
            }
        }

        return true;
    }

    private class Point {
        int x;
        int y;

        public Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
    }
}

/**
 * Your SnakeGame object will be instantiated and called as such:
 * SnakeGame obj = new SnakeGame(width, height, food);
 * int param_1 = obj.move(direction);
 */
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://anand-aryan.gitbook.io/leetcode/353.-design-snake-game.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
