Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- LeetCode
- 파이썬릿코드풀기
- 파이썬알고리즘
- leetcode풀기
- 코틀린기초
- 파이썬 알고리즘
- 릿코드 파이썬
- 알고리즘풀이
- 파이썬 릿코드
- 릿코드 풀기
- python zip_longest
- 알고리즘풀기
- leetcode풀이
- binary search
- 잇츠디모
- 파이썬 알고리즘 풀기
- 릿코드풀기
- 상가수익률계산기
- python Leetcode
- python priority queue
- python 알고리즘
- python xor
- python 릿코드
- 파이썬릿코드
- 파이썬알고리즘풀기
- 릿코드
- 릿코드풀이
- 파이썬 프로그래머스
- leetcode 풀기
- python sorted
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1979. Find Greatest Common Divisor of Array 본문
반응형
1979. Find Greatest Common Divisor of Array
https://leetcode.com/problems/find-greatest-common-divisor-of-array/
문제)
솔루션1)
- 최소, 최대 값을 구하고 최소값을 계속 감소시켜가면서 최소값, 최대값을 나눈 나머지가 0인 것을 찾는다.
class Solution:
def findGCD(self, nums: List[int]) -> int:
min_num = min(nums)
max_num = max(nums)
for n in range(min_num, 0, -1):
if min_num % n == 0 and max_num % n == 0:
return n
return 0
솔루션2)
- 유클리드 호제법 사용
class Solution:
def findGCD(self, nums: List[int]) -> int:
min_num = min(nums)
max_num = max(nums)
while min_num:
min_num, max_num = max_num % min_num, min_num
return max_num
솔루션3)
- 파이썬 최대공약수 구하는 라이브러리 사용 (GCD : Greatest Common Divisor)
- math.gcd()
class Solution:
def findGCD(self, nums: List[int]) -> int:
return math.gcd(max(nums), min(nums))
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1221. Split a String in Balanced Strings (0) | 2021.11.06 |
---|---|
LeetCode 풀기 - 1302. Deepest Leaves Sum (0) | 2021.11.06 |
LeetCode 풀기 - 709. To Lower Case (0) | 2021.11.06 |
LeetCode 풀기 - 1464. Maximum Product of Two Elements in an Array (0) | 2021.11.06 |
LeetCode 풀기 - 1941. Check if All Characters Have Equal Number of Occurrences (0) | 2021.11.06 |
Comments