Skip to content

Instantly share code, notes, and snippets.

@NimaGhaedsharafi
Created May 13, 2021 06:50
Show Gist options
  • Save NimaGhaedsharafi/136d3f13a677586158b139e66bf8c6d2 to your computer and use it in GitHub Desktop.
Save NimaGhaedsharafi/136d3f13a677586158b139e66bf8c6d2 to your computer and use it in GitHub Desktop.
<?
function num($data, $i)
{
$c = strlen($data);
if ($c == 2 && $data > 26) {
return 0;
}
if ($c < 3) {
return $c;
}
return num(substr($data,0, 1), $i+1) + num(substr($data, 1), $i+1) + num(substr($data,0, 2), $i+1) + num(substr($data,2), $i+1);
}
echo num("1224", 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment