难度:中等 一、题目描述: 二、解题分析: 1、剑指解析: 2、测试用例: 3、代码实现 I、回溯法 class Solution: def movingCount(self, m: int, n: int, k: int) -> int: self.discoveryed_plots = [] matrix = [[*] * n] * m self.discovery(matrix, 0, 0, k) return len(self.discoveryed_plots) discoveryed_plot