We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30a81d9 commit 2d3b0fbCopy full SHA for 2d3b0fb
scripts/algorithms/W/Word Search II/Word Search II.js
@@ -1,3 +1,4 @@
1
+// Runtime: 1902 ms (Top 50.75%) | Memory: 44.5 MB (Top 91.32%)
2
const buildTrie = (words) => {
3
const trie = {};
4
const addToTrie = (word, index = 0, node = trie) => {
@@ -54,4 +55,4 @@ var findWords = function(board, words) {
54
55
}
56
57
return result;
-};
58
+};
0 commit comments