From ece4bdf54d38a3185bbf8dd59cf606ce3ec4033e Mon Sep 17 00:00:00 2001 From: Rob Keim Date: Mon, 30 Jan 2017 21:15:13 +0100 Subject: [PATCH] Remove non-ASCII characters to fix #441 --- exercises/atbash-cipher/canonical-data.json | 5 ----- exercises/forth/canonical-data.json | 14 -------------- exercises/scrabble-score/canonical-data.json | 5 ----- 3 files changed, 24 deletions(-) diff --git a/exercises/atbash-cipher/canonical-data.json b/exercises/atbash-cipher/canonical-data.json index 43241c9659..bef84eed6c 100644 --- a/exercises/atbash-cipher/canonical-data.json +++ b/exercises/atbash-cipher/canonical-data.json @@ -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" } ] }, diff --git a/exercises/forth/canonical-data.json b/exercises/forth/canonical-data.json index 47e861741a..058de13073 100644 --- a/exercises/forth/canonical-data.json +++ b/exercises/forth/canonical-data.json @@ -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] } ] }, @@ -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": [ diff --git a/exercises/scrabble-score/canonical-data.json b/exercises/scrabble-score/canonical-data.json index bb46341938..02399465e0 100644 --- a/exercises/scrabble-score/canonical-data.json +++ b/exercises/scrabble-score/canonical-data.json @@ -45,11 +45,6 @@ "input": "pinata", "expected": 8 }, - { - "description": "non-english letter is not scored", - "input": "piñata", - "expected": 7 - }, { "description": "empty input", "input": "",