15/README.md

23 lines
273 B
Markdown
Raw Normal View History

2023-07-26 11:51:25 +03:00
# 15 puzzle
Simple 15 puzzle implementation with naive solver.
## Docker
```
docker run --rm -it $(docker build -q .) game
```
or
```
docker run --rm -it $(docker build -q .) solve
```
## From source
```
cd cli && go run . solve
```
or
```
cd cli && go run . game
```