diff --git a/anagram.json b/anagram.json index ab5ebeecc6..dfd4c71b64 100644 --- a/anagram.json +++ b/anagram.json @@ -51,7 +51,7 @@ "expected": ["gallery", "regally", "largely"] }, { - "description": "does not detect indentical words", + "description": "does not detect identical words", "subject": "corn", "candidates": ["corn", "dark", "Corn", "rank", "CORN", "cron", "park"], "expected": ["cron"] @@ -75,7 +75,7 @@ "expected": ["carthorse"] }, { - "description": "detects anagrams using case-insensitve possible matches", + "description": "detects anagrams using case-insensitive possible matches", "subject": "orchestra", "candidates": ["cashregister", "Carthorse", "radishes"], "expected": ["Carthorse"] @@ -98,12 +98,6 @@ "candidates": ["patter"], "expected": [] }, - { - "description": "eliminates anagrams with the same checksum", - "subject": "mass", - "candidates": ["last"], - "expected": [] - }, { "description": "detects unicode anagrams", "comment": "These words don't make sense, they're just greek letters cobbled together.", @@ -123,27 +117,6 @@ "subject": "BANANA", "candidates": ["Banana"], "expected": [] - - }, - { - "description": "anagrams must use all letters exactly once", - "subject": "patter", - "candidates": ["tapper"], - "expected": [] - } - ], - "string argument cases": [ - { - "description": "accepts string arguments", - "subject": "ant", - "candidates": ["stand", "tan", "at"], - "expected": ["tan"] - }, - { - "description": "accepts single string argument", - "subject": "ant", - "candidates": ["tan"], - "expected": ["tan"] } ] }