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