Posts

Showing posts with the label hackerrank floor ceil rint

Challenge - #45 - Floor, Ceil, and Rint

import  numpy numpy.set_printoptions(legacy= '1.13' ) A = numpy.array( input ().split(), float ) print (numpy.floor(A),numpy.ceil(A),numpy.rint(A),sep= '\n' )