development #11

Merged
NicollyVieira merged 20 commits from development into master 2022-10-28 18:16:57 +00:00
Showing only changes of commit dfd7c0129a - Show all commits

View File

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