Skip to content

Oxen-AI/front-end-challenge-minesweeper

Repository files navigation

Oxen Frontend developer challenge

To test your skills, we'd like you to build a simple minesweeper game.

Instructions

Provided is a boilerplate next.js project, created with npx create-next-app@latest.

The project contains a single function, generateGrid, that will generate a minesweeper grid of a given size, with a given number of mines.

Your task is to build a simple minesweeper game using this function.

The generateGrid function is already implemented in src/lib/minesweeper.ts.

Challenge

implement the logic for the game making sure to follow the rules of minesweeper, and fulfill the requirements below:

  • Each cell should initially be covered
  • When a cell is clicked, it should be revealed
  • If the clicked cell has a mine, it should be shown and the game should be over
  • If the clicked cell has adjacent mines, the number of adjacent mines should be shown in that cell
  • The game should be won if all cells without mines are revealed
  • The game should be lost if a cell with a mine is revealed
  • The game should be resettable
  • The game should be styled

Bonus

  • upon clicking a cell, any adjacent cells with no adjacent mines should be revealed
  • generate the initial grid data server side, and pass it to the client component as prop to avoid hydration issues

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published