• + 0 comments

    def reverseArray(a): reversed_list = [] for i in range(len(a)): reversed_list.append(a[len(a) - 1 - i]) return reversed_list