feat: resolve maxValue
This commit is contained in:
parent
f7f8e82a21
commit
31a926baf2
@ -1,4 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
if (values.length === 0) return 0;
|
||||
else {
|
||||
return Math.max (...values)
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user