You have two sorted lists of integers, L1 and L2. You know the lengths of each list, L1 has length N1 and L2 has length N2.

(a) Design an efficient algorithm (only pseudocode) to output a sorted list L1 intersection L2 (the intersection of L1 and L2).

(b) If you know that N2 > N1. What is the running time complexity of your algorithm? Justify.