Computer Science, asked by YashGupta297, 10 months ago

divide a given array into two subarray (not necessary to be continuous) such that difference between sum of both array is minimum

Answers

Answered by Anonymous
0

Partition a set into two subsets such that the difference of subset sums is minimum

Given a set of integers, the task is to divide it into two sets S1 and S2 such that the absolute difference between their sums is minimum.

If there is a set S with n elements, then if we assume Subset1 has m elements, Subset2 must have n-m elements and the value of abs(sum(Subset1) – sum(Subset2)) should be minimum.

PLEASE MAKE ME AS A BRAINLIST ANSWER

Similar questions