You are viewing a single comment's thread. Return to all comments →
The easiest way to solve this problem code = "import numpy
def arrays(arr): # complete this function # use numpy.array array = numpy.array(arr,float) reverse_array = array[::-1] return reverse_array arr = input().strip().split(' ') result = arrays(arr) print(result)"
Seems like cookies are disabled on this browser, please enable them to open this website
Arrays
You are viewing a single comment's thread. Return to all comments →
The easiest way to solve this problem code = "import numpy
def arrays(arr): # complete this function # use numpy.array array = numpy.array(arr,float) reverse_array = array[::-1] return reverse_array arr = input().strip().split(' ') result = arrays(arr) print(result)"