Mutable Sequences: Implement a function reverse that takes a list as an argument and reverses the list. You should mutate the original list, without creating any new lists. Do NOT return anything. Do not use any built-in list functions such as reverse(), append(), pop(), etc... def reverse(1st): ***Reverses 1st in place (i.e. doesn't create new lists). >>> L = [1, 2, 3, 4] >>> reverse (L) >>> L [4, 3, 2, 1]

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 16PE
icon
Related questions
Question

python help

Mutable Sequences: Implement a function reverse that takes a list as an argument and reverses the list. You should mutate the original list, without
creating any new lists. Do NOT return anything. Do not use any built-in list functions such as reverse(), append(), pop(), etc...
3
1
о
def reverse(1st):
***Reverses 1st in place (i.e. doesn't create new lists).
A
>>> L = [1, 2, 3, 4]
>>>reverse(L)
>>> L
[4, 3, 2, 1]
SES
S
F1
2
W
S
F2
#m
3
E
D
F3
A
4
R
F4
F
DII
%
5
F5
T
-O
G
96
A
F6
Y
F7
&
7
H
PrtScn
U
FB
* 00
8
Home
F9
9
End
K
F10
PgUp
Transcribed Image Text:Mutable Sequences: Implement a function reverse that takes a list as an argument and reverses the list. You should mutate the original list, without creating any new lists. Do NOT return anything. Do not use any built-in list functions such as reverse(), append(), pop(), etc... 3 1 о def reverse(1st): ***Reverses 1st in place (i.e. doesn't create new lists). A >>> L = [1, 2, 3, 4] >>>reverse(L) >>> L [4, 3, 2, 1] SES S F1 2 W S F2 #m 3 E D F3 A 4 R F4 F DII % 5 F5 T -O G 96 A F6 Y F7 & 7 H PrtScn U FB * 00 8 Home F9 9 End K F10 PgUp
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr