Https://ide.codingblocks.com/s/62241

https://ide.codingblocks.com/s/62241
problem name:Subset_sum_easy

Hi Meghna, consider the following input:
Input:
2
4
-1 -1 -1 3
4
10 9 -3 -6
The expected output is:
Yes
Yes
But your code’s output is:
No
No
Try to modify your code keeping these testcases in mind.