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<Integer> itr1, ListIterator<Integer> itr2) {

      return false;
  }



  public static void main(String[] args) {

}

}
