Help for this page

Select Code to Download


  1. or download this
    return if index(substr($grid_v, $x*$size, $size), $n) >= 0;
    
  2. or download this
    foreach my $y_ (0 .. $size-1) {
       return if substr($grid_h, $y_*$size+$x, 1) eq $n;
    }