Skip to content

Latest commit

 

History

History

reverseListOrder

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Reverse List Order

8 kyu link to kata
my solution

In this kata you will create a function that takes in a list and returns a list with the reverse order.

Examples (Input -> Output)

* [1, 2, 3, 4]  -> [4, 3, 2, 1]
* [9, 2, 0, 7]  -> [7, 0, 2, 9]