|
152 | 152 | },
|
153 | 153 | "expected": []
|
154 | 154 | },
|
| 155 | + { |
| 156 | + "uuid": "68934ed0-010b-4ef9-857a-20c9012d1ebf", |
| 157 | + "reimplements": "85757361-4535-45fd-ac0e-3810d40debc1", |
| 158 | + "description": "words are not anagrams of themselves", |
| 159 | + "property": "findAnagrams", |
| 160 | + "input": { |
| 161 | + "subject": "BANANA", |
| 162 | + "candidates": ["BANANA"] |
| 163 | + }, |
| 164 | + "expected": [] |
| 165 | + }, |
| 166 | + { |
| 167 | + "uuid": "589384f3-4c8a-4e7d-9edc-51c3e5f0c90e", |
| 168 | + "reimplements": "85757361-4535-45fd-ac0e-3810d40debc1", |
| 169 | + "description": "words are not anagrams of themselves even if letter case is partially different", |
| 170 | + "property": "findAnagrams", |
| 171 | + "input": { |
| 172 | + "subject": "BANANA", |
| 173 | + "candidates": ["Banana"] |
| 174 | + }, |
| 175 | + "expected": [] |
| 176 | + }, |
| 177 | + { |
| 178 | + "uuid": "ba53e423-7e02-41ee-9ae2-71f91e6d18e6", |
| 179 | + "reimplements": "85757361-4535-45fd-ac0e-3810d40debc1", |
| 180 | + "description": "words are not anagrams of themselves even if letter case is completely different", |
| 181 | + "property": "findAnagrams", |
| 182 | + "input": { |
| 183 | + "subject": "BANANA", |
| 184 | + "candidates": ["banana"] |
| 185 | + }, |
| 186 | + "expected": [] |
| 187 | + }, |
155 | 188 | {
|
156 | 189 | "uuid": "a0705568-628c-4b55-9798-82e4acde51ca",
|
157 | 190 | "description": "words other than themselves can be anagrams",
|
|
161 | 194 | "candidates": ["Listen", "Silent", "LISTEN"]
|
162 | 195 | },
|
163 | 196 | "expected": ["Silent"]
|
| 197 | + }, |
| 198 | + { |
| 199 | + "uuid": "33d3f67e-fbb9-49d3-a90e-0beb00861da7", |
| 200 | + "reimplements": "a0705568-628c-4b55-9798-82e4acde51ca", |
| 201 | + "description": "words other than themselves can be anagrams", |
| 202 | + "property": "findAnagrams", |
| 203 | + "input": { |
| 204 | + "subject": "LISTEN", |
| 205 | + "candidates": ["LISTEN", "Silent"] |
| 206 | + }, |
| 207 | + "expected": ["Silent"] |
164 | 208 | }
|
165 | 209 | ]
|
166 | 210 | }
|
0 commit comments