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

Reviewed-on: #3
This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 11:31:21 +00:00
commit c6b5ac1a8c

View File

@ -1,4 +1,8 @@
export function maxValue(values) {
// implementar logica aqui
}
if (values.length === 0) {
return 0;
} else {
return Math.max.apply(null, values);
}
}