@@ -62,7 +62,7 @@ cases = [ Case { description = "no matches"
62
62
, candidates = [" gallery" , " ballerina" , " regally" , " clergy" , " largely" , " leading" ]
63
63
, expected = [" gallery" , " regally" , " largely" ]
64
64
}
65
- , Case { description = " does not detect indentical words"
65
+ , Case { description = " does not detect identical words"
66
66
, subject = " corn"
67
67
, candidates = [" corn" , " dark" , " Corn" , " rank" , " CORN" , " cron" , " park" ]
68
68
, expected = [" cron" ]
@@ -82,7 +82,7 @@ cases = [ Case { description = "no matches"
82
82
, candidates = [" cashregister" , " carthorse" , " radishes" ]
83
83
, expected = [" carthorse" ]
84
84
}
85
- , Case { description = " detects anagrams using case-insensitve possible matches"
85
+ , Case { description = " detects anagrams using case-insensitive possible matches"
86
86
, subject = " orchestra"
87
87
, candidates = [" cashregister" , " Carthorse" , " radishes" ]
88
88
, expected = [" Carthorse" ]
@@ -102,11 +102,6 @@ cases = [ Case { description = "no matches"
102
102
, candidates = [" patter" ]
103
103
, expected = []
104
104
}
105
- , Case { description = " eliminates anagrams with the same checksum"
106
- , subject = " mass"
107
- , candidates = [" last" ]
108
- , expected = []
109
- }
110
105
, Case { description = " detects unicode anagrams"
111
106
, subject = " ΑΒΓ"
112
107
, candidates = [" ΒΓΑ" , " ΒΓΔ" , " γβα" ]
@@ -122,19 +117,4 @@ cases = [ Case { description = "no matches"
122
117
, candidates = [" Banana" ]
123
118
, expected = []
124
119
}
125
- , Case { description = " anagrams must use all letters exactly once"
126
- , subject = " patter"
127
- , candidates = [" tapper" ]
128
- , expected = []
129
- }
130
- , Case { description = " accepts string arguments"
131
- , subject = " ant"
132
- , candidates = [" stand" , " tan" , " at" ]
133
- , expected = [" tan" ]
134
- }
135
- , Case { description = " accepts single string argument"
136
- , subject = " ant"
137
- , candidates = [" tan" ]
138
- , expected = [" tan" ]
139
- }
140
120
]
0 commit comments