https://github.com/timbo-rafa/c-allegro-eight-queens
brute force solution to Eight Queens Puzzle
https://github.com/timbo-rafa/c-allegro-eight-queens
algorithms allegro allegro4 c c-language eight-queens-puzzle makefile
Last synced: about 2 months ago
JSON representation
brute force solution to Eight Queens Puzzle
- Host: GitHub
- URL: https://github.com/timbo-rafa/c-allegro-eight-queens
- Owner: timbo-rafa
- Created: 2018-11-24T19:45:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-24T21:11:48.000Z (over 6 years ago)
- Last Synced: 2025-01-13T01:11:33.334Z (3 months ago)
- Topics: algorithms, allegro, allegro4, c, c-language, eight-queens-puzzle, makefile
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Eight Queens Puzzle
In the Eight Queens puzzle, you have to place 8 queens in a chess board in such a way that they do not threat each other
## Compilation
```
cc eight-queens.c -o eight-queens $(pkg-config allegro --libs --cflags)
````$(pkg-config allegro --libs --cflags)` resolves to `-lalleg` in `Ubuntu 16.04`
## Running
```
./eight-queens
```