# N-Queens Problem with Bitwise Solution Write a function that will find all possible solutions to the N queens problem for a given N. ## References - [Wikipedia](https://en.wikipedia.org/wiki/Eight_queens_puzzle) - [GREG TROWBRIDGE](http://gregtrowbridge.com/a-bitwise-solution-to-the-n-queens-problem-in-javascript/) - [Backtracking Algorithms in MCPL using Bit Patterns and Recursion](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.51.7113&rep=rep1&type=pdf)