You are viewing a single comment's thread. Return to all comments →
def pageCount(n, p): if(n%2==0 and p==n-1 and p!=1): return 1 if((p//2)+1>(n-p)//2): 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 →
def pageCount(n, p): if(n%2==0 and p==n-1 and p!=1): return 1 if((p//2)+1>(n-p)//2): return (n-p)//2 else: return p//2