Search posts...
class Solution { public int solution(double flo) { return (int)flo; } }
class Solution { public int solution(double flo) { return ((Double) flo).intValue(); } }
silver