Does anyone have the pseudocode or code for this N queens problem
Place N queens on an N x N chessboard in such a way than none of them are able to capture the others. Write a function, combinations(N), which would return the number of possible combinations for any integer N. Assume N is between 4 and 12.
