Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 794 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 794 Bytes

8 puzzle solver 🧩

Project for the course of Artificial Intelligence at the University of Western São Paulo (UNOESTE).

We are going to implement a solver for the 8 puzzle problem using various approaches such as Deep-Search, Wide-Search and A* algorithm.

To access the project, click here.

System example

Technologies 💻

Technologies

Launching the project 🚀

Install the dependencies:

# For npm
npm install
# For yarn
yarn install
# For pnpm
pnpm install

Run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

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