##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
- After Initialization() - Queens Array = [4, 6, 3, 5, 7, 1, 0, 2]
- Solution - Queens Array = [5, 3, 6, 0, 7, 1, 4, 2]
##Other Instructions
- random.seed(5)
- Python 2.7.13