commit-live-students / 064-reverse-array

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Write a Python program to reverse an array using Numpy

Sample Output:

Original array: [12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37]

Reverse array: [37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12]

Notes

  • Define a function to get an array as parameter.
  • Return reverse of given array.

About


Languages

Language:Python 100.0%