Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
pmbhatiya authored Apr 12, 2020
1 parent 7a12640 commit 4e79a4a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Arrays.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Python Arrays HackerRank solution

import numpy

def arrays(arr):
result=numpy.array(arr[::-1],float)
return result

arr = input().strip().split(' ')
result = arrays(arr)
print(result)

0 comments on commit 4e79a4a

Please sign in to comment.