eight-queen-problem
There are 48 repositories under eight-queen-problem topic.
davecom/SwiftCSP
A Constraint Satisfaction Problem Solver in Pure Swift
mnr/CodeClinicR
A version of lynda.com code clinic for the R programming language
sblendorio/queens-cpm
Eight Queen Puzzle - portable CP/M version, written on Commodore 128
attogram/EightQueens
Eight Queens chess game. Can you place 8 queens on the board with none under attack? A web game inspired by the class math puzzle. Built in React with Chessboard.jsx
hassanzadehmahdi/N-Queen-Problem-using-Genetic-Algorithm
The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other.
MouChiaHung/DataStructures
My DS practices using C++.
N1ghtF1re/Eight-queens-puzzle
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonal.
SamRagusa/Evolutionary-Algorithm-Toolkit
Making evolutionary algorithm implementation and execution simple and painless.
AceAtDev/Eight-Queens-Recursion
A fully recursive algorithm to solve eight queens' problem
MuhammadAshiqAmeer/Google_colab_notebooks
Projects and colab worksheets of Python -programming, Deep learning for Computer-vision, Data-mining, Data-analysis and Advanced optimization techniques
pjama/Queens
Arranging Queens on a Chess Board
tjfy1992/Eight-Queen
A java solution to the Eight Queen(N Queen) problem
Ookami4/8-Queens-Problem
La résolution du problème de 8 reines avec l'algorithme HillClimbing
afa-farkhod/Eight-Queens
Solving the Eight Queens Problem using Backtracking algorithm in Java using JavaFX
arhcoder/eight-queens-solver
🧠 Backtracking algorithm in C language to find the 92 possible solutions of the eight queens problem and share them in a JSON file as an API.
arthurbrenno/eightqueens-api
API for making eightqueens related problems.
BaseMax/EightQueensPuzzlePHP
A PHP implementation of the Eight Queens Puzzle, using a backtracking algorithm.
KouroshAlinaghi/8-queen
Solving 8 queen puzzle in ruby using iterative repair algorithm (n queens in a n*n board)
Millennium-stack/eight-queens
This is the very famous Eight Queens problem.
NajiAboo/8QueensProblem
solve 8-queens algorithm ; Evolutionary Algorithm
pordnajela/Simple-Genetic-Algorithm
Plantilla de algoritmo genético simple. La plantilla usa un genotipo de tipo Integer (sólo números) y hay una implementación del problema de las 8 Reinas
ZahraRahimii/Algorithm-Design-Course-Project
Here are the projects of the Algorithm Design course including: weighted colored cubes, eight minister (or queen) problem with obstacle and scored obstacle.
andrej-fishchev/eightQueens-recursion
task recursion solution about eight queens
auntduda/MetodosDeProgramacao
Repositório de armazenamento de projetos realizados na disciplina Métodos de Programação durante o semestre de 2022.2
Germax26/n-queens
Solver for the N-Queens problem
muhammetsanci/Eight-Queens-Problem
A practical Java solution for eight queens problem.
sor8sh/Eight-Queens
Solving Eight Queens problem using Genetic Algorithm
thcls/Eight-queens-puzzle-AI
Implementação do algoritmo genético e da subida de encosta para a resolução do problema das 8 rainhas.
BaseMax/EightQueensPuzzleC
A C implementation of the Eight Queens Puzzle, using a backtracking algorithm.
ehtishama/local-search-8-queens
Visualization of Local Search Algorithm on the 8 queens problem.
KiarashYavari/GeneticAlgorithm_Matlab
this is a solution for 8-queen problem with genetic algorithm
marcuswkl/seatingplan-eightqueens
Seating plan and eight queens program developed with Python.
mohammad-safari/Queens-Problem-with-Osbtacles-and-One-More
Final_Project_of_Algorithm_Design_Fall_1400
shwetamustare/Eight-Queens
The eight queens problem statement dictates placement of eight chess queens on an 8×8 chessboard so that no two queens threaten each other; thus, a solution requires that no two queens share the same row, column, or diagonal. This code is using Python to resolve the problem.