feat(sum): algoritmo concluido
This commit is contained in:
parent
6065ccf64c
commit
b5637169b3
@ -1,4 +1,8 @@
|
||||
export function sum(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
}
|
||||
// implementar logica aqui
|
||||
let valorInicial = 0
|
||||
return values.reduce(
|
||||
(valorAnterior, valorAtual) => valorAnterior + valorAtual,
|
||||
valorInicial
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user