Leetcode 0416. Partition Equal Subset Sum
Posted on Sun 24 November 2024 in Leetcode • Tagged with knapsack-1-0
Question Link : https://leetcode.com/problems/partition-equal-subset-sum/
Difficulty: Medium
Premium: False
Question
Given an integer array nums, return true if you can partition the array into two subsets such that the sum of the elements in both subsets is equal or false otherwise. Example 1:
Input: nums = [1,5,11 …
Continue reading