Skip to content

mehrh8/nqueen_genetic_algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

N-Queens Genetic Algorithm

This code is a Python program to solve the N-queens problem with Genetic Algorithm

  • The N-queens problem is the problem of placing N chess queens on an N×N chessboard so that no two of them attack each other.
  • For example, the following is a solution for 4 Queens problem:
    0 0 1 0
    1 0 0 0
    0 0 0 1
    0 1 0 0
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages