forked from M3-Academy/challenge-algorithms-v2.0
feat: implementa função do valor maximo
This commit is contained in:
parent
7797328211
commit
70f64ffee3
@ -1,4 +1,13 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// 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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user