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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
The string posted doesn't meat the needs. Here's what I've got (84 chars):
sub checker { my ($str) = @_; for ('00' .. '99') { my $n = 0; $n++ while $str =~ /$_/g; die "'$_' appears $n times\n" if $n != 1; } } sub generate { 0 1 2 3 4 5 6 + 7 8 #012345678901234567890123456789012345678901234567890123456789012345678 +90123456789012345 for$x(0..9){for$y(0..9){/$x$y/||(/^$y/and$_="$x$_")||(/$x$/and$_.=$y) +or$_.="$x$y"}}$_ } print "Generating ...\n"; my $test = generate(); print "$test\n"; print "Checking ...\n"; checker($test); print "Ok\n"; ---- Generating ... 9900102030405060708091121314151617181922324252627282933435363738394454 +6474849556575859667686977879889 Checking ... Ok

I know it can be improved ...

Update: 78 chars and counting ...

#0 1 2 3 4 5 6 + 7 8 #012345678901234567890123456789012345678901234567890123456789012345678 +901234567890 for$x(0..9){for$y(0..9){/$x$y/||(/^$y/?$_=$x.$_:(/$x$/?$_.=$y:($_.=$x +.$y)))}}$_

Update: 72 chars and counting ...

#0 1 2 3 4 5 6 + 7 #012345678901234567890123456789012345678901234567890123456789012345678 +9012345 for$x(0..9){for$y(0..9){/$x$y/||($_=/^$y/?$x.$_:/$x$/?$_.$y:$_.$x.$y) +}}$_ for$x(0..9){for$y(0..9){$_=/$x$y/?$_:/^$y/?$x.$_:/$x$/?$_.$y:$_.$x.$y +}}$_

------
We are the carpenters and bricklayers of the Information Age.

The idea is a little like C++ templates, except not quite so brain-meltingly complicated. -- TheDamian, Exegesis 6

Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.


In reply to Re: Friday Golf: All 2-digit combinations by dragonchild
in thread Friday Golf: All 2-digit combinations by PhilHibbs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-24 07:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found