forked from M3-Academy/challenge-algorithms-v2.0
Entrega do Desafio #1
@ -1,4 +1,12 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if (values.length) {
|
||||||
|
let max = -Infinity;
|
||||||
|
|
||||||
|
for (let num of values) {
|
||||||
|
max = num > max ? num : max;
|
||||||
|
}
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user