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
- 캐치카페
- 자연어처리
- 편스토랑
- AI 경진대회
- Docker
- Kaggle
- Git
- programmers
- 코로나19
- SW Expert Academy
- 맥북
- 우분투
- PYTHON
- gs25
- hackerrank
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- 백준
- github
- ubuntu
- 파이썬
- dacon
- Baekjoon
- 금융문자분석경진대회
- 프로그래머스
- 편스토랑 우승상품
- ChatGPT
- 데이콘
- leetcode
- 더현대서울 맛집
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 633. Sum of Square Numbers (Python) 본문
728x90
반응형
Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c.
Example 1:
Input: 5
Output: True
Explanation: 1 * 1 + 2 * 2 = 5
Example 2:
Input: 3
Output: False
Solution
class Solution:
def judgeSquareSum(self, c):
for i in range(0,int(c**0.5)+1):
extra=c-pow(i, 2)
if (pow(int(extra**0.5),2)) == extra:
return True
return False
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 541. Reverse String II (Python) (0) | 2020.06.22 |
---|---|
[HackerRank] Sorting: Comparator (Python) (0) | 2020.06.20 |
[leetCode] 283. Move Zeroes (Python) (0) | 2020.06.19 |
[leetCode] 20. Valid Parentheses (Python) (0) | 2020.06.17 |
[leetCode] 125. Valid Palindrome (Python) (0) | 2020.06.16 |
Comments