← Pointer Manipulation
Pointer Manipulation Target: 10s
Sortedness check is a precondition guard for binary search and merge operations.
all(a[i] <= a[i+1] for i in range(len(a)-1))
Type it from memory. Go.