From ef3944bc3d9772d7a4b950682a046e0fb185f8d8 Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Fri, 17 Dec 2021 12:02:21 +0000 Subject: Change image of 7 and 9 --- challenge-028/paulo-custodio/perl/ch-2.pl | 6 +++--- 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 = { " | |", " |___|", " |", - " ___|"], + " |"], ':': [" ", " ", " . ", -- cgit