Imagine that the user provides a two one dimensional lists. Write code that returns a new list that is all the numbers in the first list that do not appear in the second list.
Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the
assessment. For example, if the user entered the lists [1, 4, 3, 5, 6, 7, 2] and
[1, 5, 8, 0] your code would return the list [4, 3, 6, 7, 2] . |