aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-028/paulo-custodio/perl/ch-2.pl6
-rw-r--r--challenge-028/paulo-custodio/python/ch-2.py6
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 = {
" | |",
" |___|",
" |",
- " ___|"],
+ " |"],
':': [" ",
" ",
" . ",