dev-serum
Search...
Ctrl
K
Data Structures & Algorithms
Coding Challenges
Codewars
8Kyu
Reverse List Order
Previous
Duck Duck Goose
Next
Welcome!
Last updated
4 years ago
Was this helpful?
Solution
Python
Copy
def reverse_list(l):
return l[::-1]
Reverse List Order
Codewars