题解列表

筛选

Minesweeper -题解(Python代码)

摘要:思路就是选把点换成数字0,判断某个元素是否是雷,如果是雷就将它周围不是雷的元素+1 ```python count = 1 while True: a, b = map(int, in……