feature/algoritmos #1

Merged
cainamilech merged 12 commits from feature/algoritmos into master 2022-10-29 19:58:08 +00:00
Showing only changes of commit 1db8a79f3b - Show all commits

View File

@ -1,4 +1,6 @@
export function maxValue(values) {
// implementar logica aqui
if(values.length === 0){
return 0;
}
return Math.max.apply(null, values);
}