Sha256: b9675189092656416c64eaf4dd63221fd3933e7d03aa0fc7f8608ee28bb7917d
Contents?: true
Size: 1.25 KB
Versions: 9
Compression:
Stored size: 1.25 KB
Contents
{ "cases": [ { "description": "sentence empty", "input": "", "expected": false }, { "description": "pangram with only lower case", "input": "the quick brown fox jumps over the lazy dog", "expected": true }, { "description": "missing character 'x'", "input": "a quick movement of the enemy will jeopardize five gunboats", "expected": false }, { "description": "another missing character 'x'", "input": "the quick brown fish jumps over the lazy dog", "expected": false }, { "description": "pangram with underscores", "input": "the_quick_brown_fox_jumps_over_the_lazy_dog", "expected": true }, { "description": "pangram with numbers", "input": "the 1 quick brown fox jumps over the 2 lazy dogs", "expected": true }, { "description": "missing letters replaced by numbers", "input": "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog", "expected": false }, { "description": "pangram with mixed case and punctuation", "input": "\"Five quacking Zephyrs jolt my wax bed.\"", "expected": true } ] }
Version data entries
9 entries across 9 versions & 1 rubygems