feat: resolve funcão maxValue

This commit is contained in:
José Gregorio Mata Rodríguez 2022-10-29 00:41:54 -02:00
parent e7bb1a6694
commit 1f1e05e78d

View File

@ -1,4 +1,13 @@
export function maxValue(values) {
// implementar logica aqui
let numeromaior = 0;
if (values[0] < numeromaior)
numeromaior = values[0];
let i = 0;
for (i = 0; i < values.length; i++){
if (numeromaior < values[i]){
numeromaior = values[i];
}
}
return numeromaior;
}