Odd Subsets

Bit Manipulation Contest Easy

Given an array of unique elements nums, return all subsets of nums whose elements sum up to an odd value.


A subset of an array is any selection of its elements, including the empty set. Answers can be returned in any order.

Constraints

  • 1 <= nums.length <= 10
  • -104 <= nums[i] <= 104
  • All elements are unique

Company Tags

[ ]