feat(maxValue): if/else com verificação do tamanho do array e Math.max, funcional em todos os testes.

This commit is contained in:
Ramon Dias Ferreira 2022-10-28 14:20:56 -03:00
parent c7ec50ec8b
commit d3a4147db9

View File

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