Help for this page

Select Code to Download


  1. or download this
    my %haystack;
    ...
    ...
                    poly_roots(
    ...
    my @wants = grep { is_approximately_an_integer( @$_ ) } values %haysta
    +ck;
    
  2. or download this
    my @wants;
    ...
                push @wants, grep { is_approximately_an_integer( @$_ ) } [
                    poly_roots(
    ...