Skip to content

1342-number-of-steps-to-reduce-a-number-to-zero

DevGod
DevGod
Vtuber
class Solution {
public int numberOfSteps(int num) {
int COUNTER = 0;
while(num>0){
if(num%2==0){ num = num/2;}
else{num = num-1;}
COUNTER++;
}
return COUNTER;
}
}