Created
February 22, 2020 03:56
-
-
Save suissa/3602644f99ebbd462515514a85261eae to your computer and use it in GitHub Desktop.
Demonstração de como criar operações básicas de matemática usando Arrays - divisão - refatorando
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tamanhoDa = (lista) => lista.length | |
const dividir = (x, y, passos = 0, total = 0) => { | |
const lista = crieUmaListaDeTamanho(x).ePreenchaCom(y) | |
return tamanhoDa(lista.filter(n => { | |
total = total + n | |
return total <= x | |
})) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment