Medium
Given an array nums of positive integers, return true if it can be split into two subsets with equal sum.
nums
true
Input: nums = [1,5,11,5] Output: true
Input: nums = [1,2,3,5] Output: false