Count Operations to Obtain Zero — LeetCode 2169 Python Solution
- Problem
- #2169
- Pattern
- Math and Number Theory
- Reading time
- 2 min
- Source
- leetcode.com
The problem
You are given two non-negative integers num1 and num2. In one operation, if num1 >= num2, you must subtract num2 from num1, otherwise subtract num1 from num2.
Example
- Input
- num1 = 2, num2 = 3
- Output
- 3
- Explanation
- - Operation 1: num1 = 2, num2 = 3. Since num1 < num2, we subtract num1 from num2 and get num1 = 2, num2 = 3 - 2 = 1.
Python solution
class Solution:
def countOperations(self, num1: int, num2: int) -> int:
ans = 0
while num1 and num2:
if num1 >= num2:
num1 -= num2
else:
num2 -= num1
ans += 1
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(m), where m is the maximum of \textit{num1} and \textit{num2} |
| Space | O(1) auxiliary |
Pattern: Math and Number Theory
Find the closed form, the invariant, or the modular identity — and skip the loop entirely. LeetCode 2169. Count Operations to Obtain Zero is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Math.
The math and number theory guide has the Python template for the pattern and the 485 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2169. Count Operations to Obtain Zero?
- LeetCode 2169. Count Operations to Obtain Zero is rated Easy on LeetCode.
- What is the time complexity of LeetCode 2169. Count Operations to Obtain Zero?
- The Python solution on this page runs in O(m), where m is the maximum of \textit{num1} and \textit{num2}.
- What is the space complexity of LeetCode 2169. Count Operations to Obtain Zero?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 2169. Count Operations to Obtain Zero cover?
- LeetCode 2169. Count Operations to Obtain Zero is tagged Math and Simulation on LeetCode.