FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms-1/string/word_squares.py at master · githubch/algorithms-1 · GitHub
githubch
/
algorithms-1
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms-1
/
string
/
word_squares.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (58 loc) · 1.59 KB
Breadcrumbs
algorithms-1
/
string
/
word_squares.py
Copy path
File metadata and controls
70 lines (58 loc) · 1.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Given a set of words (without duplicates),
# find all word squares you can build from them.
# A sequence of words forms a valid word square
# if the kth row and column read the exact same string,
# where 0 ≤ k < max(numRows, numColumns).
# For example, the word sequence ["ball","area","lead","lady"] forms
# a word square because each word reads the same both horizontally
# and vertically.
# b a l l
# a r e a
# l e a d
# l a d y
# Note:
# There are at least 1 and at most 1000 words.
# All words will have the exact same length.
# Word length is at least 1 and at most 5.
# Each word contains only lowercase English alphabet a-z.
# Example 1:
# Input:
# ["area","lead","wall","lady","ball"]
# Output:
# [
# [ "wall",
# "area",
# "lead",
# "lady"
# ],
# [ "ball",
# "area",
# "lead",
# "lady"
# ]
# ]
# Explanation:
# The output consists of two word squares. The order of output does not matter
# (just the order of words in each word square matters).
import
collections
def
word_squares
(
words
):
n
=
len
(
words
[
0
])
fulls
=
collections
.
defaultdict
(
list
)
for
word
in
words
:
for
i
in
range
(
n
):
fulls
[
word
[:
i
]].
append
(
word
)
def
build
(
square
):
if
len
(
square
)
==
n
:
squares
.
append
(
square
)
return
prefix
=
""
for
k
in
range
(
len
(
square
)):
prefix
+=
square
[
k
][
len
(
square
)]
for
word
in
fulls
[
prefix
]:
build
(
square
+
[
word
])
squares
=
[]
for
word
in
words
:
build
([
word
])
return
squares
dic
=
[
"area"
,
"lead"
,
"wall"
,
"lady"
,
"ball"
]
print
(
word_squares
(
dic
))
Back
|
FazBrowse Home
|
New Git URL