Challenge: The Partition Problem
Let's write code to solve the partition problem!
We'll cover the following...
Problem statement
Given a list of integers, write a function to find if any two subsets of the input list exist—such that the sum of both subsets is equal. You can assume that the ...