Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 343 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 343 Bytes

8QueensProblem

Write a program that employs backtracking to solve the 8-queens problem and then answer the following quesions

  1. How many solutions are there?

92 Solutions

  1. How many of these solutions are distinct?

12 distinct solutions

  1. Which generator did your program employ?

Backtracking with a generaerate and test paradigm.