feat:cria algoritmo que retorna o maior valor de um array de números.

This commit is contained in:
Emmanuel Vitor Pereira de Jesus 2022-10-31 12:05:30 -03:00
parent c6f6df9c59
commit 6b5b7ad057

View File

@ -1,4 +1,5 @@
export function maxValue(values) {
// implementar logica aqui
return (values.length == 0) ? 0 : Math.max(...values);
}