Help for this page

Select Code to Download


  1. or download this
    my $x = 1;
    my $y = 20;
    ...
    }
    
    say join ",", keys %numbers;
    
  2. or download this
    use List::Util qw/shuffle/;
    
    ...
    my @numbers = shuffle($x .. $y);
    
    say join ",", @numbers[0 .. ($looptimes - 1)];