forked from M3-Academy/challenge-algorithms-v2.0
feat: Resolvido questao maxValue
This commit is contained in:
parent
ed18578722
commit
f97c5118c1
@ -1,4 +1,12 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let maiorNumero = 0;
|
||||
for (let i = 0; i < values.length; i++) {
|
||||
if (values[i] >= maiorNumero) {
|
||||
maiorNumero = values[i];
|
||||
} else if (maiorNumero == 0) {
|
||||
maiorNumero = values[i];
|
||||
}
|
||||
}
|
||||
return maiorNumero;
|
||||
}
|
Loading…
Reference in New Issue
Block a user