forked from M3-Academy/challenge-algorithms-v2.0
13 lines
353 B
JavaScript
13 lines
353 B
JavaScript
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;
|
|
} |