Retornar os maiores números em matrizes
function largestOfFour(arr) {
let result = []
for (let i = 0; i < arr.length; i++) {
let largest = arr[i][0]
for (let j = 0; j < arr.length; j++) {
if(arr[i][j] > largest) {
largest = arr[i][j];
}
}
result[i] = largest;
}
return result;
}
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);
console.log(largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]))
// Explanations:
/* Create a variable to store the results as an array.
Create an outer loop to iterate through the outer array.
Create a second variable to hold the largest number and initialise it with the first number. This must be outside an inner loop so it won’t be reassigned until we find a larger number.
Create said inner loop to work with the sub-arrays.
Check if the element of the sub array is larger than the currently stored largest number. If so, then update the number in the variable.
After the inner loop, save the largest number in the corresponding position inside of the results array.
And finally return said array.
*/
Ralph Dizon