This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var delta = 0 | |
var mmc = 0 | |
var resposta = 0 | |
const minha_lista = [8, 6, 20] // | |
function maior(matriz) { | |
return matriz.reduce(function (a, b) { | |
return Math.max(a, b) | |
}) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var delta = 0 | |
var mdc = 0 | |
var resposta = 0 | |
const minha_lista = [20, 16, 60] // | |
function maior(matriz) { | |
return matriz.reduce(function (a, b) { | |
return Math.max(a, b) | |
}) | |
} |