forked from M3-Academy/challenge-algorithms-v2.0
feat(challenge-3): completed challenge
This commit is contained in:
parent
157c511dd7
commit
91b7269840
@ -1,4 +1,6 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if(values.length === 0 || !values) return 0
|
||||||
|
|
||||||
|
return Math.max(...values)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user