369 by jonathan camacho

for(1 .. 1000){
   $num_claps = 0;
   s#.# $num_claps++ if $& =~ m/[369]/; $& #eg;
   print $num_claps > 0 ? "Clap" x $num_claps : $_;
   print "\n";
}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page