# work and upload your solutions. If you get # stuck on a problem, go on to the
ID: 3568706 • Letter: #
Question
Explanation / Answer
def ispower(x,y):
while(x != y):
if(x%y != 0):
return False
else:
x = x/y
if(x == y):
return True;
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.