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