fork download
  1. <>;
  2. while(<>){
  3. $n = join'',(0..9);
  4. $n =~ s/[$_]//g;
  5. print $n ne ''? $n: allo, "\n"
  6. }
Success #stdin #stdout 0s 3564KB
stdin
655265
12
0326159847
0005628
stdout
03456789
allo
13479