Skip to content

Commit

Permalink
Purge trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Cochrane committed Jun 3, 2015
1 parent 0c93c1a commit 713281b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions categories/euler/prob032-andreoss.pl
Expand Up @@ -24,7 +24,7 @@
=end pod

sub is-pandigital($n is copy) {
# #`«17x slower» return so all $n.comb.one == all 1..9;
# #`«17x slower» return so all $n.comb.one == all 1..9;
return unless 123456789 <= $n <= 987654321;
my $x = 0;
loop ( ; $n != 0 ; $n div=10) {
Expand All @@ -50,7 +50,7 @@

say [+] unique gather for 1 ... 2000 -> $x {
for 1 ... 50 -> $y {
take $x * $y if is-unusual $x, $y
take $x * $y if is-unusual $x, $y
}
}

Expand Down

0 comments on commit 713281b

Please sign in to comment.