feat(maxValue): algoritmo concluido

This commit is contained in:
Mateus Antonio Rodrigues Lopes 2022-10-31 21:26:48 -03:00
parent 198be8a0aa
commit c66b769047

View File

@ -1,4 +1,8 @@
export function maxValue(values) {
// implementar logica aqui
if (values.length == 0) {
return 0
} else {
return Math.max.apply(null, values);
}
}