| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/anishLearnsToCode/hackerrank-python/master/numpy-python/arrays.py | [Back] [Original] |
# https://www.hackerrank.com/challenges/np-arrays/problem
import numpy
def arrays(arr):
return numpy.array(arr[::-1], float)
arr = input().strip().split(' ')
result = arrays(arr)
print(result)
| Web Proxy Viewer | New URL | Original Page |