반응형
포인트
1. 제곱근을 구하는 방법을 알아보자 (파이썬 도대체넌 어디까지 쉬울 거니)
🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다.
cpp
class Solution {
public:
int mySqrt(int x) {
return sqrt(x);
}
};
python
class Solution:
def mySqrt(self, x: int) -> int:
return int(x**(1/2))
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘 ] Concatenation of Consecutive Binary Numbers (0) | 2021.01.28 |
---|---|
[알고리즘] 완주하지 못한 선수 (0) | 2021.01.26 |
[알고리즘] 문자열 다루기 (0) | 2021.01.22 |
[알고리즘] 핸드폰 번호 가리기 (0) | 2021.01.22 |
[알고리즘] Valid Parentheses (0) | 2021.01.21 |
댓글