Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings FATAL => 'all';
    
  2. or download this
    sub get_numbers_from_ranges {
        my $spec = shift;
    ...
        }
        return map { $_ - 1 } sort { $a <=> $b } keys %numbers;
    }