Find Distinct Expressions

Recursion Contest Easy

Given an integer array nums, return all distinct values obtained by inserting mathematical ' + ' (addition) or ' - ' (subtraction) between each element of nums and evaluating the resulting expression.

Return the results in increasing order.

Constraints

  • 1 <= nums.length <= 10
  • 1 <= nums[i] <= 1000

Company Tags

[ ]