Python
Python copied to clipboard
Create subset_sum_dp.py
Given a set of integers and a target sum, the goal is to determine if there exists a subset whose sum equals the target. Code is based on a dynamic programming (top-down) approach.