it the input array is [10,12,20130125, 40,
32,34,35,20,60), your program
able to find that the subarray
should be
subarray lies between
the
indexes
3 and 8.
Answers
Answered by
3
n = [10, 12, 20130125, 40, 32, 34, 35, 20, 60]
# prints the subarray
print(n[3:9])
Similar questions