Help for this page

Select Code to Download


  1. or download this
    my $comb = '18,5,1790,19-66,212,213';
    
    $comb =~ s/-/../g;
    ...
    push @uns, eval "($_)" foreach split ',', $comb;
    
    print join "\n", sort { $a <=> $b } @uns;