Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- hackerrank
- 프로그래머스 파이썬
- 금융문자분석경진대회
- dacon
- Docker
- 캐치카페
- Baekjoon
- 파이썬
- ubuntu
- 데이콘
- 자연어처리
- 백준
- 맥북
- programmers
- 편스토랑 우승상품
- 편스토랑
- ChatGPT
- AI 경진대회
- leetcode
- 우분투
- 프로그래머스
- Kaggle
- 코로나19
- 더현대서울 맛집
- Real or Not? NLP with Disaster Tweets
- Git
- PYTHON
- SW Expert Academy
- github
- gs25
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 50. Pow(x, n) (Python) 본문
728x90
반응형
Implement pow(x, n), which calculates x raised to the power n (x^n).
Example 1:
Input: 2.00000, 10
Output: 1024.00000
Example 2:
Input: 2.10000, 3
Output: 9.26100
Example 3:
Input: 2.00000, -2
Output: 0.25000
Explanation: 2-2 = 1/22 = 1/4 = 0.25
Note:
- -100.0 < x < 100.0
- n is a 32-bit signed integer, within the range [−2^31, 2^31 − 1]
Solution
class Solution:
def myPow(self, x: float, n: int) -> float:
my_pow_num = pow(x, n)
if my_pow_num > (pow(2, 31) - 1):
my_pow_num = pow(2, 31) -1
elif my_pow_num < (pow(2, 31)) * (-1):
my_pow_num = pow(2, 31) * (-1)
return my_pow_num
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 46. Permutations (Python) (0) | 2020.06.04 |
---|---|
[leetCode] 75. Sort Colors (Python) (2) | 2020.06.03 |
[BaeKJoon] 9461번: 파도반 수열 (Python) (0) | 2020.06.01 |
[BaeKJoon] 1699번: 제곱수의 합 (Python) (0) | 2020.06.01 |
[BaeKJoon] 2745번: 진법 변환 (Python) (0) | 2020.05.30 |
Comments