From 8bfd4256fe81493bf8c0e04c0feb89122ec1bfc4 Mon Sep 17 00:00:00 2001 From: Joelle Maslak Date: Sun, 14 Apr 2019 14:47:28 -0500 Subject: Minor formatting change --- challenge-003/joelle-maslak/perl5/ch-1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 challenge-003/joelle-maslak/perl5/ch-1.pl diff --git a/challenge-003/joelle-maslak/perl5/ch-1.pl b/challenge-003/joelle-maslak/perl5/ch-1.pl old mode 100644 new mode 100755 index 45642bd764..da088b4a6e --- a/challenge-003/joelle-maslak/perl5/ch-1.pl +++ b/challenge-003/joelle-maslak/perl5/ch-1.pl @@ -23,7 +23,7 @@ while ( scalar(@hamming) < $count ) { $i++; } -say "Hamming numbers [0.." . ($count-1) . "]: " . join( ", ", @hamming ); +say "Hamming numbers [0.." . ( $count - 1 ) . "]: " . join( ", ", @hamming ); sub ishamming($i) { my @primes = primedivisors($i); -- cgit