in reply to Re: SuDoKu solver
in thread SuDoKu solver
my $grid = [([($init) x 9]) x 9]; # ! wrong
So, perhaps somethings like this:
my $grid = [map {[($init) x 9]} 1..9];
I was really addicted to Sudoku puzzles a few weeks ago, but I'm finally getting my life back. :-)
--
John.
|
|---|