forked from M3-Academy/challenge-algorithms-v2.0
feat(maxValue) Implementacao da funcao maxValue
This commit is contained in:
parent
dd3cc81114
commit
89b65c171e
@ -1,4 +1,11 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
|
||||||
|
if(values.length < 1){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
let maior = Math.max.apply(null, values)
|
||||||
|
|
||||||
|
return maior;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user