common/exercises/run-length-encoding/description.md in trackler-2.0.6.34 vs common/exercises/run-length-encoding/description.md in trackler-2.0.6.35
- old
+ new
@@ -12,7 +12,13 @@
```
"AABCCCDEEEE" -> "2AB3CD4E" -> "AABCCCDEEEE"
```
+If the string contains any whitespace, it should be passed through unchanged:
+
+```
+"aabc dddef" -> "2abc 3def"
+```
+
For simplicity, you can assume that the unencoded string will only contain
-the letters A through Z.
\ No newline at end of file
+the letters A through Z (either lower or uppercase) and whitespace.