Leetcode 0698. Partition to K Equal Sum Subsets
Posted on Tue 10 December 2024 in Leetcode • Tagged with subset-sum, backtracking
Question Link : https://leetcode.com/problems/partition-to-k-equal-sum-subsets/
Difficulty: Medium
Premium: False
Question
Given an integer array nums and an integer k, return true if it is possible to divide this array into k non-empty subsets whose sums are all equal. Example 1:
Input: nums = [4,3,2,3,5,2 …
Continue reading