#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl

def reverse_array_in_place(array):
    return array[::-1]