
-Code
class Solution {
public int mySqrt(int x) {
return (int) Math.sqrt(x);
}
}'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
| [LeetCode/Java] 83. Remove Duplicates from Sorted List (0) | 2025.11.22 |
|---|---|
| [LeetCode/Java] 70. Climbing Stairs (0) | 2025.11.22 |
| [LeetCode/Java] 67. Add Binary (0) | 2025.11.22 |
| [백준/Java] 27445번 Gorani Command (0) | 2025.11.22 |
| [백준/Java] 34687번 라면 끓여 먹자 야호 (0) | 2025.11.21 |