3 line super ez C++ soln
InterviewBit Problems
Trailing Zeroes : Unsolved
HariAcidReign123
2020-11-06 16:34:11 UTC
#1
int Solution::solve(int A) { for(int i=0;i<32;i++) if(A&(1<<i)) return i; }