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
- 파이썬 알고리즘
- python zip_longest
- 상가수익률계산기
- leetcode풀기
- 파이썬알고리즘풀기
- python priority queue
- python Leetcode
- binary search
- 릿코드풀기
- python 릿코드
- 파이썬릿코드풀기
- 파이썬릿코드
- 릿코드
- python sorted
- 릿코드풀이
- 파이썬 릿코드
- python xor
- 파이썬 프로그래머스
- 알고리즘풀이
- 릿코드 풀기
- 파이썬알고리즘
- leetcode풀이
- 잇츠디모
- python 알고리즘
- leetcode 풀기
- 코틀린기초
- 파이썬 알고리즘 풀기
- 알고리즘풀기
- LeetCode
- 릿코드 파이썬
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 2169. Count Operations to Obtain Zero 본문
반응형
2169. Count Operations to Obtain Zero
https://leetcode.com/problems/count-operations-to-obtain-zero/
문제)
솔루션1) 재귀
의식의 흐름대로 풉니다.
class Solution:
def countOperations(self, num1: int, num2: int) -> int:
def recur(n1, n2, count):
if n1 == 0 or n2 == 0:
return count
if n1 > n2:
n1 -= n2
else:
n2 -= n1
return recur(n1, n2, count+1)
return recur(num1, num2, 0)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 662. Maximum Width of Binary Tree (0) | 2022.02.27 |
---|---|
LeetCode 풀기 - 49. Group Anagrams (0) | 2022.02.26 |
LeetCode 풀기 - 347. Top K Frequent Elements (0) | 2022.02.25 |
LeetCode 풀기 - 165. Compare Version Numbers (0) | 2022.02.25 |
LeetCode 풀기 - 121. Best Time to Buy and Sell Stock (0) | 2022.02.25 |
Comments