Reverse an Array
- we need to takes an array as an argument of a function. Without utilizing any of the built-in methods available in python language, return an array with elements in reverse order.
Whiteboard Process

Approach & Efficiency
Big O
-
time <– O(n^2)
-
space <– O(n)