Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        }
        return @rv;
    }
    
  2. or download this
    ({ 42 => [5, 11] }, { 7 => [6, 9] }, { 2 => [1, 2, 7] })
    
  3. or download this
    use strict;
    use warnings;
    ...
        delete @buckets{ grep { @{$buckets{$_}} < 2 } keys %buckets };
        return %buckets;
    }
    
  4. or download this
    { 2 => [1, 2, 7], 7 => [6, 9], 42 => [5, 11] }