Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 362 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 362 Bytes

8QueenProblemSolver

##Purpose This program was created for CSCI-48700 with the purpose that it will solve the 8 queens problem by using a min-conflict algorithm

##Expected Output

  1. After Initialization() - Queens Array = [4, 6, 3, 5, 7, 1, 0, 2]
  2. Solution - Queens Array = [5, 3, 6, 0, 7, 1, 4, 2]

##Other Instructions

  1. random.seed(5)
  2. Python 2.7.13