Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    use List::Util qw/shuffle/;
    
    ...
    eighteenth
    nineteenth
    twentieth
    
  2. or download this
    my %sequences = map {chomp; $_ => 1} <DATA>;
    my @sequences = (keys %sequences)[0 ..9];
    say "@sequences";