높은곳에영광 2022. 1. 16. 23:47

class Solution {
public:
    int mySqrt(int x) {
        return floor(sqrt(x));
    }
};