export function maxValue(values) {
// implementar logica aqui
if (values.length < 1) {
return 0;
}
const maior = Math.max(...values);
return maior;