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

Re: Alpha base-26 to base-10...

by Util (Priest)
on Jul 02, 2003 at 01:35 UTC ( [id://270684]=note: print w/replies, xml ) Need Help??


in reply to Alpha base-26 to base-10...

Yet another take. Clear and elegant, but quite inefficient given large maximums.

{ my $count; my %h = map {$_ => ++$count} 'a'..'zzz'; sub alphabetic_to_base10 { return $h{ lc( $_[0] ) } or die; } }

Replies are listed 'Best First'.
Re^2: Alpha base-26 to base-10...
by Aristotle (Chancellor) on Jul 02, 2003 at 07:51 UTC
    That's simply a pre-memoized version of BrowserUk's approach.

    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://270684]
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-04-23 13:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found