Help for this page

Select Code to Download


  1. or download this
    my @grid = (
        # 0  1  2  3  4  5  
    ...
        [ 1, 0, 1, 0, 0, 0, ], 
        [ 0, 1, 1, 0, 0, 0, ],
    );
    
  2. or download this
    my @grid = (
        # 0  1  2  3  4  5  
    ...
        [ 1, 1, 1, 1, 1, 1, ], 
        [ 1, 1, 0, 1, 1, 1, ],
    );