Skip to content

Files

Latest commit

238dacf · May 30, 2020

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 30, 2020
Dec 4, 2019
Dec 4, 2019

<< [38] Solve the N-queens problem >>

You have an N by N board. Write a function that, given N, returns the number of possible arrangements of the board where N queens can be placed on the board without threatening each other, i.e. no two queens share the same row, column, or diagonal.

The following are the first 7 terms of the sequence (from Wikipedia's Eight queens puzzle page):

>>> [coding_problem_38(n + 1) for n in range(7)]
[1, 0, 0, 2, 10, 4, 40]