Help for this page

Select Code to Download


  1. or download this
    # Find the number of vertices
    my @L;
    ...
            push(@L, $S[$i][$j]);
        }
    }
    
  2. or download this
    my @L = map { @$_ } @S;