forked from M3-Academy/challenge-algorithms-v2.0
Merge pull request 'feat(maxValue): adiciona resolucao questao03-maxValue' (#3) from feature/maxValue into development
Reviewed-on: #3
This commit is contained in:
commit
d81279f71d
@ -1,4 +1,6 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// 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