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 16, 2020
1 parent 6804ada commit 956abc8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Floor, Ceil and Rint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Python Floor, Ceil and Rint HackerRank solution

import numpy as np
np.set_printoptions(sign=' ')

array=np.array(input().split(),float)
print(np.floor(array))
print(np.ceil(array))
print(np.rint(array))

0 comments on commit 956abc8

Please sign in to comment.