Games and Sums
How I solved the sum-subset-problem
The sum subset problem is a well-known problem in computer science and mathematics. The sum subset problem asks whether a given set of positive integers contains a non-empty subset that adds up to a given target sum. I solved the problem by checking all possible subsets of the given set S and checked whether the sum of the subset equals the target sum T. The time...