Source code for kyu_8.my_head_is_at_the_wrong_end.fix_the_meerkat
"""
Solution for -> My head is at the wrong end!.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
[docs]
def fix_the_meerkat(arr: list) -> list:
"""
'fix_the_meerkat' function.
Reversing a List in Python.
:param arr:
:return:
"""
return arr[::-1]