/** * Generic method contains takes an array of arbitrary type and returns true if any item * of the array meets the specified conditions * */ public class K_Thyaga_Hwk1 { //generic method contain public static boolean contains (T [] input, ClassType c) { for (int i=0; i