forked from M3-Academy/challenge-algorithms-v2.0
Merge pull request 'feat(desafio03):desafio-completo' (#3) from feature/desafio03 into develop
Reviewed-on: #3
This commit is contained in:
commit
7343cec7ec
@ -1,4 +1,10 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
if (values.length === 0) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
return Math.max.apply(null,values);
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user