You are viewing a single comment's thread. Return to all comments →
def pageCount(n, p): # Write your code here if p == 1 or n==p: return '0' else: if (n-p)< p: if n-p <=1 and p %2 !=0: return '1' else: return (n-p)//2 else: return p//2
Seems like cookies are disabled on this browser, please enable them to open this website
Drawing Book
You are viewing a single comment's thread. Return to all comments →