import java.util.LinkedList; public interface TRAI_25_X3 { /** * Combination of two sorted lists. * * @param A First list. In ascending order. * @param B Second list. In ascending order. * @param element type * @return All the elements of A and B, in ascending order. */ public > LinkedList combinationOfSorted(LinkedList A, LinkedList B); }