forked from M3-Academy/challenge-algorithms-v2.0
feat: Implementa Desafio 2.3
This commit is contained in:
parent
c10bee305d
commit
1fe9d7fb96
@ -1,4 +1,18 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
let valores = [...values];
|
||||||
|
let maiorValor = valores[0];
|
||||||
|
|
||||||
|
if(valores.length === 0) {
|
||||||
|
maiorValor = 0;
|
||||||
|
}else {
|
||||||
|
for(let i = 0 ; i < valores.length ; i++) {
|
||||||
|
let valor = valores[i];
|
||||||
|
|
||||||
|
if(valor > maiorValor) {
|
||||||
|
maiorValor = valor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return maiorValor;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user