Feature #1

Merged
WilliamSimao merged 11 commits from Feature into master 2022-11-01 00:09:34 +00:00
Showing only changes of commit 59ff8f2a54 - Show all commits

View File

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