如题,求python代码一行实现
学习是最好的投资!
a = your_list
max(a[j] - a[i] for i in range(len(a)) for j in range(i, len(a)))
update
max(max(a[i:]) - a[i] for i in range(len(a)))
max(arr[b] - arr[a] for b in range(len) for a in range(b+1))
Oh, by the way, I am writing Python 3. If you use Python 2, it is better to use xrange instead.
xrange
a = your_list
update
Oh, by the way, I am writing Python 3. If you use Python 2, it is better to use
xrange
instead.