面試題13. 機器人的運動範圍

面試題13. 機器人的運動範圍 思路:dfs+判斷面試 class Solution { public: int movingCount(int m, int n, int k) { res = 0; dfs(0,0,m,n,k); return res; } private: int res; bool flag[1
相關文章
相關標籤/搜索