forked from M3-Academy/challenge-algorithms-v2.0
feat(maxValue): adiciona resolucao questao03-maxValue
This commit is contained in:
parent
9cfced79fe
commit
4af6fcb6bf
@ -1,4 +1,6 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
if(Math.max.apply(undefined ,values) == -Infinity)
|
||||
return 0
|
||||
return Math.max.apply(undefined ,values);
|
||||
}
|
Loading…
Reference in New Issue
Block a user