forked from M3-Academy/challenge-algorithms-v2.0
feature/algorithms #1
@ -1,4 +1,9 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
if(values.length == 0) return 0;
|
||||
|
||||
return values.reduce((ac, value) => {
|
||||
if(ac > value) return ac;
|
||||
return value
|
||||
}, );
|
||||
}
|
Loading…
Reference in New Issue
Block a user