package hw7b; import java.util.*; public class HW7B { // in the following method, itr1 is a ListIterator on a List lst1 of // Integers, and itr2 is a ListIterator on a List lst2 of Integers. // The method should return true if and only if lst1 and lst2 have // a common integer. For writing the code of this method, you should // only need the hasNext, next, hasPrevious, and previous methods // of a ListIterator. public static boolean haveCommonElements(ListIterator itr1, ListIterator itr2) { return false; } public static void main(String[] args) { } }