Create two sub array of maximum equal height from an array. Problem Statement: There are N bricks (a1, a2, ...., aN). Each brick has length L1, L2, ...., LN). Make 2 highest parallel pillars (same length pillars) using the bricks provided. Constraints: There are N bricks. 5<=N<=50 Length of each brick. 1<=L<=1000 Sum of the bricks lengths <= 1000 Length of the bricks is not given in size order. There may be multiple bricks which may have the same length. Not all bricks have to be used to create the pillars. Example: 1st Example- N = 5 2, 3, 4, 1, 6 Possible Sets: (2, 6) and (3, 4, 1) Answer: 8 2nd Example- N = 6 1, 5, 1, 6, 1, 1 Possible Sets: (6, 1) and (1, 5, 1) Answer: 7 Solution: import java.util.*; public class KNumberSubset { private int number; private int sum; private LinkedList<Integer> subset; private int[] numbers; static LinkedList<LinkedList<Integer>> all=new LinkedList<>(); public KN