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