feat(maxValue): adiciona resolucao questao03-maxValue #3

Merged
carloswinter merged 1 commits from feature/maxValue into development 2022-10-28 18:56:53 +00:00

View File

@ -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);
}