An open API service indexing awesome lists of open source software.

https://github.com/apebl/eight-puzzle-solver

A 8-puzzle solver written in C++
https://github.com/apebl/eight-puzzle-solver

8puzzle 8puzzle-solver assignment cpp cpp17

Last synced: 10 months ago
JSON representation

A 8-puzzle solver written in C++

Awesome Lists containing this project

README

          

# 8-Puzzle Solver

A 8-puzzle solver written in C++.

See [REPORT.pdf](REPORT.pdf) for a detailed description.

## Build and run

### Using Meson

```sh
meson _build
meson compile -C _build
./_build/eight-puzzle
```

### Manual compile

```sh
g++ eight_puzzle/*.cpp eight_puzzle/*.hpp
./a.out
```