export function maxValue(values) {
// implementar logica aqui
return (values.length == 0) ? 0 : Math.max(...values);
}