Write a method that has the following parameters: a two dimensional array of doubles. The method returns the smallest ro
Posted: Fri May 20, 2022 1:33 pm
Write a method that has the following parameters: a two dimensional array of doubles. The method returns the smallest row sum. In order to do that, you will create an ArrayList of Double objects, every time you find the sum of a row from the two dimensional array, you will add that sum to the ArrayList. After you're done computing the sums of all the rows, you will return the smallest element from the ArrayList.