Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^4: Sudoku puzzles solved using Regular Expressions

by ikegami (Patriarch)
on Jun 30, 2005 at 05:42 UTC ( [id://471226]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Sudoku puzzles solved using Regular Expressions
in thread Sudoku puzzles solved using Regular Expressions

Yeah, there are diminishing returns to adding more shortcuts.

Technically, $grid_v is not needed at all.

return if index(substr($grid_v, $x*$size, $size), $n) >= 0;

can be written as

foreach my $y_ (0 .. $size-1) { return if substr($grid_h, $y_*$size+$x, 1) eq $n; }

I just thought the former would be faster, even though we must constantly make copies of $grid_v in addition to $grid_h.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-19 15:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found