k, find whether it's possible to divide this array into k non-empty subsets whose sums are all equal. Input: nums = [4, 3, 2, 3, 5, 2, 1], k = 4
Output: True
(5), (1, 4), (2,3), (2,3) have equal sums Input: nums = [1], k = 3
Output: false Input: nums = [1, 1, 1], k = 3
Output: true Input: nums = [1, 2, 3], k = 2
Output: true Partition to K Equal Sum Subsets