Welcome to Day 12 of the DSA Coding Challenge:

Today's Goals (Dynamic Programming continued) :

Question 1: Target Sum: You are given an integer array nums and an integer target.

You want to build an expression out of nums by adding one of the symbols '+' and '-' before each integer in nums and then concatenate all the integers.

Return the number of different expressions that you can build, which evaluates to target.

Question 2: Partition Equal Subset SumGiven 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.


All the best !