forked from M3-Academy/challenge-algorithms-v2.0
feat:cria algoritmo que retorna o maior valor de um array de números.
This commit is contained in:
parent
c6f6df9c59
commit
6b5b7ad057
@ -1,4 +1,5 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
return (values.length == 0) ? 0 : Math.max(...values);
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user