development #11

Merged
Daniel_Moliari_Barbosa merged 20 commits from development into master 2022-10-28 19:36:26 +00:00
Showing only changes of commit 3e5615a4dd - Show all commits

View File

@ -1,4 +1,8 @@
export function maxValue(values) {
// implementar logica aqui
let maxV = Math.max(...values);
if(!values.length){
maxV = 0;
}
return maxV;
}