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