Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Pangram: check case insensitive behavior" #1659

Merged
merged 1 commit into from
May 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 1 addition & 17 deletions exercises/pangram/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"A pangram is a sentence using every letter of the alphabet at least once.",
"Output should be a boolean denoting if the string is a pangram or not."
],
"version": "2.1.0",
"version": "2.0.0",
"cases": [
{
"description": "empty sentence",
Expand Down Expand Up @@ -85,22 +85,6 @@
"sentence": "the quick brown fox jumps over with lazy FX"
},
"expected": false
},
{
"description": "a-m and A-M are 26 different letters but not a pangram",
"property": "isPangram",
"input": {
"sentence": "abcdefghijklm ABCDEFGHIJKLM"
},
"expected": false
},
{
"description": "pangram with more than 26 letters (if case sensitive)",
"property": "isPangram",
"input": {
"sentence": "the 1 quick brown fox jumps Over the 2 lazy dogs"
},
"expected": true
}
]
}