Skip to content

Instantly share code, notes, and snippets.

@rmamont
Last active March 29, 2017 06:16
Show Gist options
  • Save rmamont/e281d534ad3a63f3ef0f3588fca73f09 to your computer and use it in GitHub Desktop.
Save rmamont/e281d534ad3a63f3ef0f3588fca73f09 to your computer and use it in GitHub Desktop.
calc factorial in iterative method
<?php
function fctrl($num) {
$iter = function($num, $acc) use (&$iter) {
if ($num == 1) {
return $acc;
}
return $iter($num - 1, $acc * $num);
};
return $iter($num, 1);
}
echo fctrl(97), PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment