Help for this page

Select Code to Download


  1. or download this
    sub signature {
      my $arrayref = shift;
    ...
      # if not, use a different character to join them
      return join '.', @$arrayref;
    }
    
  2. or download this
    my %seen;
    for my $arrayref (@all_inputs) {
    ...
      $arrayref->[$_] *= $count for (0, 1);
      print_result($arrayref);
    }