劍指offer - 面試題13:機器人的運動範圍 - C++

class Solution { public: int movingCount(int threshold, int rows, int cols) { if(threshold<0 || rows<1 || cols<1) return 0; int row=0, col=0; bool* visited = n
相關文章
相關標籤/搜索