import java.util.*; public class Solution { /** * * @param n int整型 the n * @return int整型 */ int max; //总共的皇后数 int[] array = new int [max]; int count=0; public int Nqueen (int n) { //n个皇后返回m种解法 // write code here array = new int[n]; ...