...

/

Challenge: The Partition Problem

Challenge: The Partition Problem

Check if the array can be partitioned into two subsets with equal sums.

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. Assume that the ...