Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Render numeric sequence as array of letters (fixed)

by Aristotle (Chancellor)
on May 21, 2003 at 23:46 UTC ( [id://259943]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Render numeric sequence as array of letters
in thread Render numeric sequence as array of letters

True.
my @original_array = qw(5 100 2 8 8 40); my @letter_seq = do { my %letter_for; @letter_for{@original_array} = (); @letter_for{sort { $a <=> $b } keys %letter_for} = ('A' .. 'Z'); @letter_for{@original_array}; };

Makeshifts last the longest.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-03-29 11:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found