Leetcode #735: Asteroid Collision
In this guide, we solve Leetcode #735 Asteroid Collision in Python and focus on the core idea that makes the solution efficient.
You will see the intuition, the step-by-step method, and a clean Python implementation you can use in interviews.

Problem Statement
We are given an array asteroids of integers representing asteroids in a row. The indices of the asteroid in the array represent their relative position in space.
Quick Facts
- Difficulty: Medium
- Premium: No
- Tags: Stack, Array, Simulation
Intuition
The problem has a natural nested or last-in-first-out structure.
A stack lets us resolve matches in the correct order as we scan.
Approach
Push items as they appear and pop when you can finalize a decision.
The stack captures the unresolved part of the input.
Steps:
- Push elements as you scan.
- Pop when a rule or match is satisfied.
- Use the stack to compute results.
Example
Input: asteroids = [5,10,-5]
Output: [5,10]
Explanation: The 10 and -5 collide resulting in 10. The 5 and 10 never collide.
Python Solution
class Solution:
def asteroidCollision(self, asteroids: List[int]) -> List[int]:
stk = []
for x in asteroids:
if x > 0:
stk.append(x)
else:
while stk and stk[-1] > 0 and stk[-1] < -x:
stk.pop()
if stk and stk[-1] == -x:
stk.pop()
elif not stk or stk[-1] < 0:
stk.append(x)
return stk
Complexity
The time complexity is , and the space complexity is . The space complexity is .
Edge Cases and Pitfalls
Watch for boundary values, empty inputs, and duplicate values where applicable. If the problem involves ordering or constraints, confirm the invariant is preserved at every step.
Summary
This Python solution focuses on the essential structure of the problem and keeps the implementation interview-friendly while meeting the constraints.