aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-104/cheok-yin-fung/perl/ch-1.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-104/cheok-yin-fung/perl/ch-1.pl b/challenge-104/cheok-yin-fung/perl/ch-1.pl
index 111f6a72e4..b1b86da675 100644
--- a/challenge-104/cheok-yin-fung/perl/ch-1.pl
+++ b/challenge-104/cheok-yin-fung/perl/ch-1.pl
@@ -7,7 +7,7 @@ use warnings;
my @a = (0,1);
-for my $i (3..50) {
+for my $i (2..50) { #fixed on 08:33 BST
$a[$i] = $i % 2 == 0 ? $a[$i/2] : $a[($i-1)/2]+$a[($i+1)/2];
}