Skip to content

Instantly share code, notes, and snippets.

@nemanjan00
Created March 8, 2016 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nemanjan00/c637ef0608f2251813a7 to your computer and use it in GitHub Desktop.
Save nemanjan00/c637ef0608f2251813a7 to your computer and use it in GitHub Desktop.
<?php
function broj($n){
if($n == 1){
return 1;
}
if($n % 2 == 0){
return broj($n/2) - 1;
}
else
{
return broj(($n - 1) / 2) + 1;
}
}
echo broj(2015);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment