merge all challenges #1

Merged
Gabriel_Lehmann merged 19 commits from development into master 2022-10-30 04:26:03 +00:00
Showing only changes of commit 0629350549 - Show all commits

View File

@ -1,4 +1,6 @@
export function sum(values) {
// implementar logica aqui
return values.reduce((somaTotal, numeroAtual) => {
return somaTotal + numeroAtual
},0)
}