2023-12-09 18:42:21 +08:00
< p > Given an integer array < code > nums< / code > , return < code > true< / code > < em > if you can partition the array into two subsets such that the sum of the elements in both subsets is equal or < / em > < code > false< / code > < em > otherwise< / em > .< / p >
2022-03-27 20:52:13 +08:00
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:52:13 +08:00
< pre >
< strong > Input:< / strong > nums = [1,5,11,5]
< strong > Output:< / strong > true
< strong > Explanation:< / strong > The array can be partitioned as [1, 5, 5] and [11].
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:52:13 +08:00
< pre >
< strong > Input:< / strong > nums = [1,2,3,5]
< strong > Output:< / strong > false
< strong > Explanation:< / strong > The array cannot be partitioned into equal sum subsets.
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = nums.length < = 200< / code > < / li >
< li > < code > 1 < = nums[i] < = 100< / code > < / li >
< / ul >