feature #1

Merged
wellingtonCarlos merged 11 commits from feature into master 2022-11-02 18:10:07 +00:00
Showing only changes of commit e7260ebf67 - Show all commits

View File

@ -1,4 +1,11 @@
export function maxValue(values) {
// implementar logica aqui
if (values == `${[]}`) {
return 0
} else {
return Math.max.apply(null, values);
}
}