j
k
j a
j l
Nils Wagner wrote:
Hi all, what is the best way to check if the entries (integers) of an array are stored in ascending order ?
Hi all,
what is the best way to check if the entries (integers) of an array are stored in ascending order ?
Hi Nils,
Try np.alltrue( ar[1:] > ar[:-1] ).
r.
Back to the thread
Back to the list