We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 377e7cd commit 459c7a1Copy full SHA for 459c7a1
exercises/run-length-encoding/canonical-data.json
@@ -1,6 +1,6 @@
1
{
2
"#": [
3
- "The tests deliberately check that single characters are encoded without count."
+ "The tests deliberately check that single characters are encoded without count."
4
],
5
"cases": [
6
@@ -29,14 +29,14 @@
29
"expected": "zzz ZZ zZ"
30
},
31
32
- "description": "encode unicode",
33
- "input": "⏰⚽⚽⚽⭐⭐⏰",
34
- "expected": "⏰3⚽2⭐⏰"
+ "description": "nothing to encode",
+ "input": "XYZ",
+ "expected": "XYZ"
35
36
37
- "description": "decode unicode",
38
- "input": "⏰3⚽2⭐⏰",
39
- "expected": "⏰⚽⚽⚽⭐⭐⏰"
+ "description": "nothing to decode",
+ "input": "",
+ "expected": ""
40
}
41
]
42
0 commit comments