forked from M3-Academy/challenge-algorithms-v2.0
feat: criação da resposta do 06-sum
This commit is contained in:
parent
4f1db060f4
commit
c2815674bc
@ -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