Course Content
NumPy in a Nutshell
Challenge: Get One Dimensional Array Using Only Negative Indexes
You have such an array: arr = [54, 23, 1, 76, 8, 45, 10, 3]. You have to get such an array [76, 8, 45], using array slicing. BUT use only negative indices.
Select the correct answer
Section 3.
Chapter 8