Search⌘ K

Challenge: The Partition Problem

Let's write code to solve the partition problem!

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 ...