diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-12-17 12:02:21 +0000 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-12-17 12:02:21 +0000 |
| commit | ef3944bc3d9772d7a4b950682a046e0fb185f8d8 (patch) | |
| tree | 4ed18923db6ff325a333f32c6216b208e20e9b94 | |
| parent | 994fa45410ba8f2eeb4992d35a44e41bf973869c (diff) | |
| download | perlweeklychallenge-club-ef3944bc3d9772d7a4b950682a046e0fb185f8d8.tar.gz perlweeklychallenge-club-ef3944bc3d9772d7a4b950682a046e0fb185f8d8.tar.bz2 perlweeklychallenge-club-ef3944bc3d9772d7a4b950682a046e0fb185f8d8.zip | |
Change image of 7 and 9
| -rw-r--r-- | challenge-028/paulo-custodio/perl/ch-2.pl | 6 | ||||
| -rw-r--r-- | challenge-028/paulo-custodio/python/ch-2.py | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/challenge-028/paulo-custodio/perl/ch-2.pl b/challenge-028/paulo-custodio/perl/ch-2.pl index 6664df0349..e2dd386ac1 100644 --- a/challenge-028/paulo-custodio/perl/ch-2.pl +++ b/challenge-028/paulo-custodio/perl/ch-2.pl @@ -61,8 +61,8 @@ $chars{'6'}[3] = " | |"; $chars{'6'}[4] = " |___|"; $chars{'7'}[0] = " ___ "; -$chars{'7'}[1] = " | |"; -$chars{'7'}[2] = " | |"; +$chars{'7'}[1] = " |"; +$chars{'7'}[2] = " |"; $chars{'7'}[3] = " |"; $chars{'7'}[4] = " |"; @@ -76,7 +76,7 @@ $chars{'9'}[0] = " ___ "; $chars{'9'}[1] = " | |"; $chars{'9'}[2] = " |___|"; $chars{'9'}[3] = " |"; -$chars{'9'}[4] = " ___|"; +$chars{'9'}[4] = " |"; $chars{':'}[0] = " "; $chars{':'}[1] = " "; diff --git a/challenge-028/paulo-custodio/python/ch-2.py b/challenge-028/paulo-custodio/python/ch-2.py index a96d8442f9..3e796f3de5 100644 --- a/challenge-028/paulo-custodio/python/ch-2.py +++ b/challenge-028/paulo-custodio/python/ch-2.py @@ -51,8 +51,8 @@ chars = { " | |", " |___|"], '7': [" ___ ", - " | |", - " | |", + " |", + " |", " |", " |"], '8': [" ___ ", @@ -64,7 +64,7 @@ chars = { " | |", " |___|", " |", - " ___|"], + " |"], ':': [" ", " ", " . ", |
