class Solution { public: /** * * @param n int整型 the n * @return int整型 */ void function(int n, int num, int& res, vector<bool>& pathRow, vector<bool>& pathCol, vector<bool>& pathX, vector<bool>& pathY) { if(num == n) { ...