Write code that takes a two dimensional list of integers of at least size two from the user, and finds the minimum and next minimum
integer in this two dimensional
list. We will guarantee all numbers in the list are unique. Return the two numbers as an array; for example, if the user
enters [[2,3][1,4]] you would return [1,2] .
Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the
assessment. |