| 1 | from typing import List |
| 2 | |
| 3 | class TrieNode: |
| 4 | def __init__(self): |
| 5 | self.children = {} |
| 6 | self.word = None |
| 7 | |
| 8 | def find_all_words_on_a_board(board: List[List[str]], words: List[str]) -> List[str]: |
| 9 | root = TrieNode() |
no outgoing calls
no test coverage detected