Search posts...
flo
class Solution { public int solution(double flo) { return (int) Math.floor(flo); } }
class Solution { public int solution(double flo) { return (int) flo; } }
jjack1