Help for this page

Select Code to Download


  1. or download this
    my $iter = combinations( $k => \@vertices );
    
    ...
        }
        print "@subset is a $k-clique\n";
    }
    
  2. or download this
            if ($string =~ /$regex/x) {
                print join(" ", map $$_, 1..$k), "\n";
            }
    
  3. or download this
    $regex .= '(?{ print join(" ", map $$_, 1..$k), "\\n" })(?!)';
    $string =~ /$regex/x;
    
  4. or download this
    5 6 9
    2 3 4
    1 3 4
    1 2 4
    1 2 3