Computer Science, asked by LaveezaTahir, 4 months ago

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 jai696
3

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

n = [10, 12, 20130125, 40, 32, 34, 35, 20, 60]

# prints the subarray

print(n[3:9])

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions