mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 17:56:02 +08:00
Update Minimum sum partition
Added some test cases for better understanding.
This commit is contained in:
@ -1,5 +1,19 @@
|
||||
// Partition a set into two subsets such that the difference of subset sums is minimum
|
||||
|
||||
/*
|
||||
Input: arr[] = {1, 6, 11, 5}
|
||||
Output: 1
|
||||
Explanation:
|
||||
Subset1 = {1, 5, 6}, sum of Subset1 = 12
|
||||
Subset2 = {11}, sum of Subset2 = 11
|
||||
|
||||
Input: arr[] = {36, 7, 46, 40}
|
||||
Output: 23
|
||||
Explanation:
|
||||
Subset1 = {7, 46} ; sum of Subset1 = 53
|
||||
Subset2 = {36, 40} ; sum of Subset2 = 76
|
||||
*/
|
||||
|
||||
import java.util.*;
|
||||
import java.lang.*;
|
||||
import java.io.*;
|
||||
|
Reference in New Issue
Block a user