Help for this page

Select Code to Download


  1. or download this
        my $grid = [([($init) x 9]) x 9]; # ! wrong
    
  2. or download this
        my $grid = [map {[($init) x 9]} 1..9];