feat: finalizado maxValue

This commit is contained in:
Vitor Soares 2022-10-28 11:45:34 -03:00
parent 9cc120fabb
commit 01ac558b06

View File

@ -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
}, );
}