forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
word-squares.py
51 lines (41 loc) · 1.29 KB
/
word-squares.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Time: O(n^2 * n!)
# Space: O(n^2)
class TrieNode(object):
def __init__(self):
self.indices = []
self.children = [None] * 26
def insert(self, words, i):
cur = self
for c in words[i]:
if not cur.children[ord(c)-ord('a')]:
cur.children[ord(c)-ord('a')] = TrieNode()
cur = cur.children[ord(c)-ord('a')]
cur.indices.append(i)
class Solution(object):
def wordSquares(self, words):
"""
:type words: List[str]
:rtype: List[List[str]]
"""
result = []
trie = TrieNode()
for i in xrange(len(words)):
trie.insert(words, i)
curr = []
for s in words:
curr.append(s)
self.wordSquaresHelper(words, trie, curr, result)
curr.pop()
return result
def wordSquaresHelper(self, words, trie, curr, result):
if len(curr) >= len(words[0]):
return result.append(list(curr))
node = trie
for s in curr:
node = node.children[ord(s[len(curr)]) - ord('a')]
if not node:
return
for i in node.indices:
curr.append(words[i])
self.wordSquaresHelper(words, trie, curr, result)
curr.pop()