Problem Solving/리트코드(leetcode)
Sqrt(x)
높은곳에영광
2022. 1. 16. 23:47
class Solution {
public:
int mySqrt(int x) {
return floor(sqrt(x));
}
};