forked from M3-Academy/challenge-algorithms-v2.0
Merge branch 'feature/maxValue'
This commit is contained in:
commit
3b2b27070b
@ -1,4 +1,8 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
if (values.length == 0) return 0;
|
||||||
|
const maxValue = values.reduce(function (prev, current) {
|
||||||
|
return prev > current ? prev : current;
|
||||||
|
});
|
||||||
|
|
||||||
|
return maxValue;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user