Notice
250x250
Recent Posts
Recent Comments
Link
넘치게 채우기
[LeetCode] 50. Pow(x, n) 본문
728x90
반응형
https://leetcode.com/problems/powx-n/description/
문제 유형 : 수학
문제 난이도 : Medium
문제
Implement pow(x, n), which calculates x raised to the power n (i.e., xn).
x의n승을 반환하시오.
풀이
cmath 라이브러리의 pow(a,b)함수를 쓰면 된다. a의 b제곱을 반환한다.
코드(C++)
class Solution {
public:
double myPow(double x, int n) {
return pow(x, n);
}
};
728x90
반응형
'PS > LeetCode' 카테고리의 다른 글
[LeetCode] 852. Peak Index in a Mountain Array (0) | 2023.07.25 |
---|---|
[LeetCode] 380. Insert Delete GetRandom O(1) (0) | 2023.07.24 |
[LeetCode] 274. H-Index (0) | 2023.07.23 |
[LeetCode] 383. Ransom Note (0) | 2023.07.22 |
[LeetCode] 673. Number of Longest Increasing Subsequence (0) | 2023.07.21 |