Skip to content

Commit

Permalink
Remove non-ASCII characters to fix exercism#441
Browse files Browse the repository at this point in the history
  • Loading branch information
robkeim committed Jan 30, 2017
1 parent 9b580e8 commit ece4bdf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 24 deletions.
5 changes: 0 additions & 5 deletions exercises/atbash-cipher/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@
"description": "encode all the letters",
"phrase": "The quick brown fox jumps over the lazy dog.",
"expected": "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt"
},
{
"description": "encode ignores non ascii",
"phrase": "non ascii éignored",
"expected": "mlmzh xrrrt mlivw"
}
]
},
Expand Down
14 changes: 0 additions & 14 deletions exercises/forth/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@
"1 2 3 4 5"
],
"expected": [1, 2, 3, 4, 5]
},
{
"description": "all non-word characters are separators",
"input": [
"1\u00002\u00133\n4\r5 6\t7"
],
"expected": [1, 2, 3, 4, 5, 6, 7]
}
]
},
Expand Down Expand Up @@ -308,13 +301,6 @@
],
"expected": [1, 1]
},
{
"description": "can consist of arbitrary characters such as Unicode characters",
"input": [
": € 220371 ; €"
],
"expected": [220371]
},
{
"description": "cannot redefine numbers",
"input": [
Expand Down
5 changes: 0 additions & 5 deletions exercises/scrabble-score/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@
"input": "pinata",
"expected": 8
},
{
"description": "non-english letter is not scored",
"input": "piñata",
"expected": 7
},
{
"description": "empty input",
"input": "",
Expand Down

0 comments on commit ece4bdf

Please sign in to comment.