Imagine the user enters two lists of integers. Return a the largest number between the two arrays. For example, if the two input arrays were [1, 3, 2] and [7, 4] , your
code would return 7 . If both arrays are empty, return zero.Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the assessment. |