Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Password Solver 2

by ikegami (Patriarch)
on Jul 08, 2009 at 23:25 UTC ( [id://778440]=note: print w/replies, xml ) Need Help??


in reply to Password Solver 2

Note that if you're only dealing with letters, you can use ++ on strings.

$ perl -e'$g="a"; print $g++, " " while $g ne 'cw'; print "\n"' a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af +ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc +bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz +ca cb cc cd ce cf cg ch ci cj ck cl cm cn co cp cq cr cs ct cu cv

Otherwise, your mapping is backwards. You should be working with numbers (indexes into @mapping), then mapping to the characters.

my @mapping = ('a'..'z'); my $guess = join '', @mapping[ @guess ];

It might be a bit faster to build $guess relative to the previous value rather than building it from scratch every time, but that's easy to change later.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-25 10:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found