forked from M3-Academy/challenge-algorithms-v2.0
feature/desafiodois #3
@ -1,4 +1,12 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// 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