• + 0 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