http://www.perlmonks.org?node_id=267989


in reply to Pulling random elements from hash

Yet another way to do it:
print $hash{$_} for (sort {rand() <=> 0.5} keys %hash)

§ George Sherston

Replies are listed 'Best First'.
Re: Re: Pulling random elements from hash
by ihb (Deacon) on Jun 22, 2003 at 23:21 UTC
    Perlfunc / sort: The comparison function is required to behave. If it returns inconsistent results (sometimes saying $x[1] is less than $x[2] and sometimes saying the opposite, for example) the results are not well-defined.

    I guess that means you don't really know what your code will give you. (Which kind of seems to be the point of it, but in another way. :))

    ihb
Re^2: Pulling random elements from hash
by Aristotle (Chancellor) on Jun 30, 2003 at 20:42 UTC