Sep 25, 2024
AR[0, -1] -> last element of the first row (value 5).AR[-1, 2] -> third element from the last row.AR[-1, -1] -> last element from the last row (value 15).data[0] -> first element.data[0:2] -> elements at index 0 and 1 (index 2 is excluded).data[-3:-1]).