forked from M3-Academy/challenge-algorithms-v2.0
feat(maxValue): if/else com verificação do tamanho do array e Math.max, funcional em todos os testes.
This commit is contained in:
parent
c7ec50ec8b
commit
d3a4147db9
@ -1,4 +1,8 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if(values.length === 0){
|
||||||
|
return 0
|
||||||
|
} else {
|
||||||
|
return Math.max(...values)
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user