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

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

Awesome Lists containing this project

README

          

# N-Queens Problem in Zig

~~~text
╔════╤════╤════╤════╤════╤════╤════╤════╗
║ │ │ │ │ │ 01 │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ │ │ │ 00 ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ 02 │ │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ 02 │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ 01 │ │ │ │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ 00 │ │ │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ │ │ │ │ │ │ 02 │ ║
╟────┼────┼────┼────┼────┼────┼────┼────╢
║ 00 │ │ │ │ │ │ │ ║
╚════╧════╧════╧════╧════╧════╧════╧════╝
~~~