export function maxValue(values) {
// implementar logica aqui
let maxV = Math.max(...values);
if(!values.length){
maxV = 0;
}
return maxV;