We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defcounterGame(n):# Write your code hereturns=0whilen>1:if(n&(n-1)==0):n//=2else:highest_power_of_2=1whilehighest_power_of_2*2<=n:highest_power_of_2*=2n-=highest_power_of_2turns+=1ifturns%2==0:return"Richard"else:return"Louise"
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Counter game
You are viewing a single comment's thread. Return to all comments →