feat(maxValue): adiciona resolucao questao03-maxValue

This commit is contained in:
carloswinter 2022-10-28 15:56:15 -03:00
parent 9cfced79fe
commit 4af6fcb6bf

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