Skip to content

Commit 2cab3ac

Browse files
aQuaaQua
authored andcommitted
126 accepted. 269ms. 100%.
1 parent 3e0328f commit 2cab3ac

File tree

3 files changed

+3
-70
lines changed

3 files changed

+3
-70
lines changed
47.8 KB
Loading

Algorithms/0126.word-ladder-ii/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@ UPDATE (2017/1/20):
3030
The wordList parameter had been changed to a list of strings (instead of a set of strings). Please reload the code definition to get the latest changes.
3131

3232
## 解题思路
33+
这一次,我不想感谢服务器。
34+
![100%](126.100%.png)
3335

34-
见程序注释
36+
见程序注释

Algorithms/0126.word-ladder-ii/word-ladder-ii_test.go

Lines changed: 0 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -18,75 +18,6 @@ func Test_Problem0126(t *testing.T) {
1818
ans [][]string
1919
}{
2020

21-
{
22-
"hit",
23-
"cog",
24-
[]string{"hot", "dot", "dog", "lot", "log", "cog"},
25-
[][]string{
26-
[]string{"hit", "hot", "dot", "dog", "cog"},
27-
[]string{"hit", "hot", "lot", "log", "cog"},
28-
},
29-
},
30-
31-
{
32-
"qa",
33-
"sq",
34-
[]string{"si", "go", "se", "cm", "so", "ph", "mt", "db", "mb", "sb", "kr", "ln", "tm", "le", "av", "sm", "ar", "ci", "ca", "br", "ti", "ba", "to", "ra", "fa", "yo", "ow", "sn", "ya", "cr", "po", "fe", "ho", "ma", "re", "or", "rn", "au", "ur", "rh", "sr", "tc", "lt", "lo", "as", "fr", "nb", "yb", "if", "pb", "ge", "th", "pm", "rb", "sh", "co", "ga", "li", "ha", "hz", "no", "bi", "di", "hi", "qa", "pi", "os", "uh", "wm", "an", "me", "mo", "na", "la", "st", "er", "sc", "ne", "mn", "mi", "am", "ex", "pt", "io", "be", "fm", "ta", "tb", "ni", "mr", "pa", "he", "lr", "sq", "ye"},
35-
[][]string{
36-
[]string{"qa", "ba", "be", "se", "sq"},
37-
[]string{"qa", "ba", "bi", "si", "sq"},
38-
[]string{"qa", "ba", "br", "sr", "sq"},
39-
[]string{"qa", "ca", "cm", "sm", "sq"},
40-
[]string{"qa", "ca", "co", "so", "sq"},
41-
[]string{"qa", "la", "ln", "sn", "sq"},
42-
[]string{"qa", "la", "lt", "st", "sq"},
43-
[]string{"qa", "ma", "mb", "sb", "sq"},
44-
[]string{"qa", "pa", "ph", "sh", "sq"},
45-
[]string{"qa", "ta", "tc", "sc", "sq"},
46-
[]string{"qa", "fa", "fe", "se", "sq"},
47-
[]string{"qa", "ga", "ge", "se", "sq"},
48-
[]string{"qa", "ha", "he", "se", "sq"},
49-
[]string{"qa", "la", "le", "se", "sq"},
50-
[]string{"qa", "ma", "me", "se", "sq"},
51-
[]string{"qa", "na", "ne", "se", "sq"},
52-
[]string{"qa", "ra", "re", "se", "sq"},
53-
[]string{"qa", "ya", "ye", "se", "sq"},
54-
[]string{"qa", "ca", "ci", "si", "sq"},
55-
[]string{"qa", "ha", "hi", "si", "sq"},
56-
[]string{"qa", "la", "li", "si", "sq"},
57-
[]string{"qa", "ma", "mi", "si", "sq"},
58-
[]string{"qa", "na", "ni", "si", "sq"},
59-
[]string{"qa", "pa", "pi", "si", "sq"},
60-
[]string{"qa", "ta", "ti", "si", "sq"},
61-
[]string{"qa", "ca", "cr", "sr", "sq"},
62-
[]string{"qa", "fa", "fr", "sr", "sq"},
63-
[]string{"qa", "la", "lr", "sr", "sq"},
64-
[]string{"qa", "ma", "mr", "sr", "sq"},
65-
[]string{"qa", "fa", "fm", "sm", "sq"},
66-
[]string{"qa", "pa", "pm", "sm", "sq"},
67-
[]string{"qa", "ta", "tm", "sm", "sq"},
68-
[]string{"qa", "ga", "go", "so", "sq"},
69-
[]string{"qa", "ha", "ho", "so", "sq"},
70-
[]string{"qa", "la", "lo", "so", "sq"},
71-
[]string{"qa", "ma", "mo", "so", "sq"},
72-
[]string{"qa", "na", "no", "so", "sq"},
73-
[]string{"qa", "pa", "po", "so", "sq"},
74-
[]string{"qa", "ta", "to", "so", "sq"},
75-
[]string{"qa", "ya", "yo", "so", "sq"},
76-
[]string{"qa", "ma", "mn", "sn", "sq"},
77-
[]string{"qa", "ra", "rn", "sn", "sq"},
78-
[]string{"qa", "ma", "mt", "st", "sq"},
79-
[]string{"qa", "pa", "pt", "st", "sq"},
80-
[]string{"qa", "na", "nb", "sb", "sq"},
81-
[]string{"qa", "pa", "pb", "sb", "sq"},
82-
[]string{"qa", "ra", "rb", "sb", "sq"},
83-
[]string{"qa", "ta", "tb", "sb", "sq"},
84-
[]string{"qa", "ya", "yb", "sb", "sq"},
85-
[]string{"qa", "ra", "rh", "sh", "sq"},
86-
[]string{"qa", "ta", "th", "sh", "sq"},
87-
},
88-
},
89-
9021
{
9122
"hit",
9223
"cog",

0 commit comments

Comments
 (0)