Help for this page

Select Code to Download


  1. or download this
    if (
            $matrix[0][4][0] == 1
    ...
    ) {
        # action if TRUE
    }
    
  2. or download this
    print "it worked" if matrix_ok(\@matrix);
    
  3. or download this
    sub matrix_ok {
        my ($matrix) = @_;
    ...
    
        return 1;
    }
    
  4. or download this
                ...
                for my $k (MIN_DEPTH .. MAX_DEPTH) {
                ...