forked from M3-Academy/challenge-algorithms-v2.0
Merge branch 'feature/06-sum' into developer
This commit is contained in:
commit
660dd6189b
@ -1,4 +1,9 @@
|
||||
export function sum(values) {
|
||||
// implementar logica aqui
|
||||
let soma = 0;
|
||||
|
||||
for (let index = 0; index < values.length; index++) {
|
||||
soma += values[index];
|
||||
}
|
||||
return soma;
|
||||
}
|
Loading…
Reference in New Issue
Block a user