Arrays

  • + 0 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)"