diff options
| author | Abigail <abigail@abigail.be> | 2021-04-26 17:23:16 +0200 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-04-26 17:23:16 +0200 |
| commit | 2afd5f937984d0e308df4c65e04ebaed3cff00fa (patch) | |
| tree | fabbcf172f594d508a6437d97d1ff939067357d0 | |
| parent | 38d84fe5b0a8ca68ef74b0711778a95b39ef6aa0 (diff) | |
| download | perlweeklychallenge-club-2afd5f937984d0e308df4c65e04ebaed3cff00fa.tar.gz perlweeklychallenge-club-2afd5f937984d0e308df4c65e04ebaed3cff00fa.tar.bz2 perlweeklychallenge-club-2afd5f937984d0e308df4c65e04ebaed3cff00fa.zip | |
Notes on the mismatch between specification and examples for week 110, part 1
| -rw-r--r-- | challenge-110/abigail/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/challenge-110/abigail/README.md b/challenge-110/abigail/README.md index a931e845a9..0de651abe6 100644 --- a/challenge-110/abigail/README.md +++ b/challenge-110/abigail/README.md @@ -29,6 +29,17 @@ nnnn nnnnnnnnnn (44) 1148820341 ~~~~ +### Notes +The examples show we should not take the specification as a specification; +just a rough guideline. According to the specification, +" +44 1148820341" fails the criteria not once, but twice: it contains +a leading space (not allowed in the specification), and it has only a +single space between the '+44' part and the rest, where the specification +requires two. + +We therefore conclude the examples just contain random spaces, and we +can completly ignore any white space in the input. + ### Solutions ### Blog |
