File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
exercises/practice/anagram Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,11 @@ description = "detects anagrams using case-insensitive possible matches"
46
46
47
47
[7cc195ad-e3c7-44ee-9fd2-d3c344806a2c ]
48
48
description = " does not detect an anagram if the original word is repeated"
49
+ include = false
50
+
51
+ [630abb71-a94e-4715-8395-179ec1df9f91 ]
52
+ description = " does not detect an anagram if the original word is repeated"
53
+ reimplements = " 7cc195ad-e3c7-44ee-9fd2-d3c344806a2c"
49
54
50
55
[9878a1c9-d6ea-4235-ae51-3ea2befd6842 ]
51
56
description = " anagrams must use all letters exactly once"
Original file line number Diff line number Diff line change 1
1
# These tests are auto-generated with test data from:
2
2
# https://github.com/exercism/problem-specifications/tree/main/exercises/anagram/canonical-data.json
3
- # File last updated on 2023-07-20
3
+ # File last updated on 2023-12-27
4
4
5
5
import unittest
6
6
@@ -61,7 +61,7 @@ def test_detects_anagrams_using_case_insensitive_possible_matches(self):
61
61
self .assertCountEqual (find_anagrams ("orchestra" , candidates ), expected )
62
62
63
63
def test_does_not_detect_an_anagram_if_the_original_word_is_repeated (self ):
64
- candidates = ["go Go GO " ]
64
+ candidates = ["goGoGO " ]
65
65
expected = []
66
66
self .assertCountEqual (find_anagrams ("go" , candidates ), expected )
67
67
You can’t perform that action at this time.
0 commit comments