Skip to content

Instantly share code, notes, and snippets.

@kfly8
Created July 24, 2014 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kfly8/ca126161ecf35d697f06 to your computer and use it in GitHub Desktop.
Save kfly8/ca126161ecf35d697f06 to your computer and use it in GitHub Desktop.
0 に評価されるのが複数あると、無限ループのよう
use List::UtilsBy qw/weighted_shuffle_by/;
my @wlist = (
{ value => 'a', weight => 0 },
{ value => 'b', weight => 0 },
);
weighted_shuffle_by { $_->{weight} } @wlist;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment