Merge pull request 'feat(maxValue): adiciona resolucao questao03-maxValue' (#3) from feature/maxValue into development

Reviewed-on: #3
This commit is contained in:
Carlos Eduardo T. Winter 2022-10-28 18:56:52 +00:00
commit d81279f71d

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