https://github.com/andreashdez/n_queens_problem_zig
N-Queens problem with genetic algorithm in Zig
https://github.com/andreashdez/n_queens_problem_zig
genetic-algorithm zig
Last synced: 6 months ago
JSON representation
N-Queens problem with genetic algorithm in Zig
- Host: GitHub
- URL: https://github.com/andreashdez/n_queens_problem_zig
- Owner: andreashdez
- License: mit
- Created: 2024-08-12T22:15:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-12T23:06:06.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T18:15:01.895Z (over 1 year ago)
- Topics: genetic-algorithm, zig
- Language: Zig
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# N-Queens Problem in Zig
~~~text
╔════╤════╤════╤════╤════╤════╤════╤════╗
║ │ │ │ │ │ 01 │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ │ │ │ 00 ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ 02 │ │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ 02 │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ 01 │ │ │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ 00 │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ │ │ 02 │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ 00 │ │ │ │ │ │ │ ║
╚════╧════╧════╧════╧════╧════╧════╧════╝
~~~