Skip to main content
主页
Coding
Basic
Frontend
Backend
Database
Operations
Leetcode
AI
兴趣使然
Articles
搜索文档
Ctrl
K
069_x的平方根
T4mako
4/17/26
Less than 1 minute
算法
二分查找
数学
069_x的平方根
简单
class
Solution
{
public
int
mySqrt
(
int
x
)
{
return
(
int
)
Math
.
sqrt
(x);
}
}