feat: resolve maxValue

This commit is contained in:
Naian Felix dos Santos 2022-10-28 08:19:41 -03:00
parent f7f8e82a21
commit 31a926baf2

View File

@ -1,4 +1,8 @@
export function maxValue(values) {
// implementar logica aqui
if (values.length === 0) return 0;
else {
return Math.max (...values)
}
}