Skip to content

Commit

Permalink
Time: 5 ms (61.61%), Space: 19.8 MB (65.18%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Jun 1, 2024
1 parent 3e100de commit d99a8ef
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class Solution {

/**
* @param Integer $num
* @return Integer
*/
function numberOfSteps($num) {
$steps = 0;
while($num != 0){
if($num%2 == 0){
$num = $num/2;
}else{
$num--;
}
$steps++;
}
return $steps;
}
}

0 comments on commit d99a8ef

Please sign in to comment.