export function maxValue(values) {
// implementar logica aqui
if (values.length === 0) {
return 0;
} else {
return Math.max.apply(null, values);
}