将整数m划分为n个整数,使得到的整数之间的差值不超过1,结果按照升序排列。
例如输入55, 6,返回[9, 9, 9, 9, 9, 10]。
Python代码:
def splitInteger(m, n):
assert n > 0
quotient = m / n
remainder = m % n
if remainder > 0:
return [quotient] * (n - remainder) + [quotient + 1] * remainder
if remainder ...