Help for this page

Select Code to Download


  1. or download this
    Brute-force algorithm:
    
    ...
            return $m if is_power( $--m, 2 );
        }
    }
    
  2. or download this
    Predictive algorithm:
    
    ...
    
        abs( $n - $l ) > abs( $n - $v ) ? $v : $l;
    }