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

10 lines
157 B
JavaScript
Raw Normal View History

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