Partition Equal Subset Sum — LeetCode 416 Python Solution
- Problem
- #416
- Pattern
- Dynamic Programming
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given an integer array nums, return true if you can partition the array into two subsets such that the sum of the elements in both subsets is equal or false otherwise.
Example
- Input
- nums = [1,5,11,5]
- Output
- true
- Explanation
- The array can be partitioned as [1, 5, 5] and [11].
Python solution
class Solution:
def canPartition(self, nums: List[int]) -> bool:
m, mod = divmod(sum(nums), 2)
if mod:
return False
n = len(nums)
f = [[False] * (m + 1) for _ in range(n + 1)]
f[0][0] = True
for i, x in enumerate(nums, 1):
for j in range(m + 1):
f[i][j] = f[i - 1][j] or (j >= x and f[i - 1][j - x])
return f[n][m]Complexity
| Measure | Complexity |
|---|---|
| Time | O(m \times n) |
| Space | O(m \times n) auxiliary |
Pattern: Dynamic Programming
Define a state, write the transition, and stop recomputing the same subproblem. LeetCode 416. Partition Equal Subset Sum is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Dynamic Programming.
The dynamic programming guide has the Python template for the pattern and the 481 LeetCode problems that use it.
Related problems
On study lists
This problem is on NeetCode 150 and Grind 75.
Frequently asked questions
- How hard is LeetCode 416. Partition Equal Subset Sum?
- LeetCode 416. Partition Equal Subset Sum is rated Medium on LeetCode.
- What is the time complexity of LeetCode 416. Partition Equal Subset Sum?
- The Python solution on this page runs in O(m \times n).
- What is the space complexity of LeetCode 416. Partition Equal Subset Sum?
- The Python solution on this page uses O(m \times n) auxiliary space.
- What topics does LeetCode 416. Partition Equal Subset Sum cover?
- LeetCode 416. Partition Equal Subset Sum is tagged Array and Dynamic Programming on LeetCode.