challenge-algorithms-v2.0-r.../03-maxValue/index.js

9 lines
165 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
2022-10-28 11:30:15 +00:00
if (values.length === 0) {
return 0;
} else {
return Math.max.apply(null, values);
}
}