Skip to content

Instantly share code, notes, and snippets.

@vdudouyt
Created December 4, 2013 09:16
Show Gist options
  • Save vdudouyt/7784630 to your computer and use it in GitHub Desktop.
Save vdudouyt/7784630 to your computer and use it in GitHub Desktop.
Group a Perl array
sub group
{
my ($group_size, @array) = @_;
my ($i, @ret);
push @{$ret[$i++/$group_size]}, $_ for @array;
return @ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment