humbertoferro #1

Merged
Humberto.Ferro merged 9 commits from humbertoferro into master 2022-10-31 21:34:30 +00:00
Showing only changes of commit 53eee52952 - Show all commits

View File

@ -1,4 +1,9 @@
export function sum(values) {
// implementar logica aqui
var soma = 0;
for (var i = 0; i < values.length; i++) {
soma += values[i];
}
return soma;
}