export function maxValue(values) {
// implementar logica aqui
let result = Math.max.apply(null, values)
if (result < -1){
return 0;
}
return result;