You are given a string, str, as a binary representation of an integer. Your task is to return the number of steps needed to reduce it to
If the number is even, divide it by
If the number is odd, add
You can always reach 1 for all provided test cases.
Constraints:
str.length
str consists of characters
You are given a string, str, as a binary representation of an integer. Your task is to return the number of steps needed to reduce it to
If the number is even, divide it by
If the number is odd, add
You can always reach 1 for all provided test cases.
Constraints:
str.length
str consists of characters