| 1 | data class TrieNode( |
| 2 | var word: String? = null, |
| 3 | val children: HashMap<Char, TrieNode> = hashMapOf() |
| 4 | ) |
| 5 | |
| 6 | fun findAllWordsOnABoard(board: Array<CharArray>, words: List<String>): List<String> { |
| 7 | val root = TrieNode() |
no outgoing calls
no test coverage detected