Imagine the user enters two lists of integers. Sum the two lists together and return the resulting list. For example if the user entered
the lists [1,2,3] and [4,5,6,7] , your code would return [5,7,9,7] .
Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the
assessment. |