Help for this page

Select Code to Download


  1. or download this
    my @odd_digit_sum = grep digit_sum_is_odd($_), @input numbers;
    
  2. or download this
    my @odd_digit_sum;
    for (@input) {
    ...
          push @odd_digit_sum, $_;
       }
    }