Design and implement a "inner join" function using 2 sorted lists/arrays. Make it run in O(n) time.
Anonymous
//MERGING SORTED ARRAYS public static int[] merge(int[] a,int[] b) { int m=0;int n=0; int k=a.length+b.length; int[] c=new int[k]; int j=0; while(m
Check out your Company Bowl for anonymous work chats.