NumPy - Indexing and Slicing
Why does
arr[5:2:-1] return elements in reverse order from index 5 down to 3, but arr[5:2:1] returns an empty array?