Help for this page

Select Code to Download


  1. or download this
    my @possible_next_steps = @{$links{$start}};
    my @unvisited_nodes = grep { ! $visited->{$_} } @possible_next_steps;
    ...
    for (@unvisited_nodes) {
        ...
    };