feature/algoritmos #1

Merged
cainamilech merged 12 commits from feature/algoritmos into master 2022-10-29 19:58:08 +00:00
Showing only changes of commit 0d5a0e9130 - Show all commits

View File

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