diff --git a/03-maxValue/index.js b/03-maxValue/index.js index e433b31..cbc3564 100644 --- a/03-maxValue/index.js +++ b/03-maxValue/index.js @@ -1,4 +1,18 @@ export function maxValue(values) { - // implementar logica aqui - + let valores = [...values]; + let maiorValor = valores[0]; + + if(valores.length === 0) { + maiorValor = 0; + }else { + for(let i = 0 ; i < valores.length ; i++) { + let valor = valores[i]; + + if(valor > maiorValor) { + maiorValor = valor; + } + } + } + + return maiorValor; } \ No newline at end of file