master-algorithms-py/arrays_and_strings/playing_with_strings.py
2023-08-07 17:35:27 -07:00

7 lines
122 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl
def reverse_array_in_place(array):
return array[::-1]