Problem
The n-queens puzzle is the problem of placingn queens on an n x n chessboard such that no two queens attack each other.
Given an integer n, return the number of distinct solutions to the n-queens puzzle.
Examples
Constraints
1 <= n <= 9