leetcode 212 word search II bugs using trie

前端 未结 0 556
梦谈多话
梦谈多话 2021-01-23 13:54

Here is my solution:

class Solution(object):
    def findWords(self, board, words):
        WORD_KEY = \'$\'
        trie = {}
        for word in words:
                 


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题