Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: unique random numbers

by dug (Chaplain)
on Sep 17, 2002 at 03:05 UTC ( [id://198422]=note: print w/replies, xml ) Need Help??


in reply to unique random numbers

i just intensely dislike the: @myAvailableNumbers = keys %myAvailableNumbers; line anyone know how i can rewrite that section to get rid of it?

If you are using @array = keys %hash; only so you can use $#array later, you can use either of the methods in the script below. The fist one uses the interpolation trick from Recipe 1.10 in the Cookbook, which isn't very readable. The second test is pretty straight forward.
#!/usr/bin/perl -w use strict; $|++; use Test::Simple tests => 2; my $size = int( rand(500) ); my %hash = map { $_ => 1 } my @array = ( 0 .. $size ); ok( $#array == (@{[ %hash ]})/2 - 1, 'Recipe 1.10 from the Cookbook' ) +; ok( $#array == keys(%hash)-1, 'keys minus 1' );
Zaxo++ for his elegan solution to the problem at hand.

  dug

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://198422]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-20 02:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found