development #11

Merged
luizfelipe9627 merged 20 commits from development into master 2022-11-02 13:01:51 +00:00
Showing only changes of commit 13f49bc179 - Show all commits

View File

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