FromLeetcodeStatusACDateApr 2, 2024Tags动态规划01背包Difficulty中等Linkhttps://leetcode.cn/problems/partition-equal-subset-sum/description/题面给你一个 只包含正整数 的 非空 数组 nums 。请你判断是否可以将这个数组分割成两个子集,使得两个子集的元素和相等。示例 1:示例 2:提示:1 <= nums.length <= 2001 <= nums[i] <= 100 思路这道题可以转换成01背包问题题解