← Back to Algorithms

Subset Sum

Find a subset of numbers that sum to a target value.

Normal
Step 0 of 0
Time Complexity: O(2^N)
Space Complexity: O(N)

How it works

Find a subset of numbers that sum to a target value.