Palindromic gapful numbers: Difference between revisions

Content deleted Content added
Thundergnat (talk | contribs)
m →‎{{header|Raku}}: work around concurrency problem in recent Raku
Thundergnat (talk | contribs)
Line 3,857: Line 3,857:
my @gappal = (1..9).map: -> \digit {
my @gappal = (1..9).map: -> \digit {
my \divisor = digit + 10 * digit;
my \divisor = digit + 10 * digit;
@npal.hyper.map: -> \this { next unless (my \test = digit ~ this ~ digit) %% divisor; test }
@npal.map: -> \this { next unless (my \test = digit ~ this ~ digit) %% divisor; test }
}
}


Line 3,866: Line 3,866:
,"\n(Extra stretchy) 9,995th through 10,000th:", 9994..9999, 12
,"\n(Extra stretchy) 9,995th through 10,000th:", 9994..9999, 12
,"\n(Meh) 100,000th:", 99999, 14
,"\n(Meh) 100,000th:", 99999, 14
).map: -> $caption, $range, $fmt {
).hyper(:1batch).map: -> $caption, $range, $fmt {
my $now = now;
my $now = now;
say $caption;
say $caption;