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