摘要: 题目描述: 方法一;回溯 class Solution: def exist(self, board: List[List[str]], word: str) -> bool: max_x,max_y,max_step = len(board)-1,len(board[0])-1,len(word) 阅读全文
posted @ 2019-04-22 19:33 oldby 阅读(154) 评论(0) 推荐(0) 编辑