Computer Science, asked by minisha07, 3 months ago

1.
2. def reverse(s, start, stop):
3. if start < stop - 1:
4. S[start], S[stop-1] = S[stop-1], S[start]
5. reverse(S, start+1, stop-1)
the entire process runs in
time.
Type your answer here
I​

Answers

Answered by ashysiddiqui
1

Answer:

4) correct answer is this

Similar questions