├── .gitignore ├── README.md ├── jogo-adivinhacao ├── README.md ├── helpers.js ├── index.html ├── main.css └── main.js ├── ligue-as-luzes ├── README.md ├── index.html ├── main.css └── main.js ├── ordenar ├── _helpers.js ├── bogo.js ├── bubble.js ├── pancake.js └── selection.js ├── palindromo ├── README.md ├── index.js ├── package-lock.json ├── package.json └── test │ └── index.js ├── pangrama ├── README.md ├── index.js ├── package-lock.json ├── package.json └── test │ └── index.js ├── shuffle-perfeito ├── README.md ├── index.js ├── package-lock.json └── package.json └── triangulo-de-pascal ├── README.md ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/README.md -------------------------------------------------------------------------------- /jogo-adivinhacao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/jogo-adivinhacao/README.md -------------------------------------------------------------------------------- /jogo-adivinhacao/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/jogo-adivinhacao/helpers.js -------------------------------------------------------------------------------- /jogo-adivinhacao/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/jogo-adivinhacao/index.html -------------------------------------------------------------------------------- /jogo-adivinhacao/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/jogo-adivinhacao/main.css -------------------------------------------------------------------------------- /jogo-adivinhacao/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/jogo-adivinhacao/main.js -------------------------------------------------------------------------------- /ligue-as-luzes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ligue-as-luzes/README.md -------------------------------------------------------------------------------- /ligue-as-luzes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ligue-as-luzes/index.html -------------------------------------------------------------------------------- /ligue-as-luzes/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ligue-as-luzes/main.css -------------------------------------------------------------------------------- /ligue-as-luzes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ligue-as-luzes/main.js -------------------------------------------------------------------------------- /ordenar/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ordenar/_helpers.js -------------------------------------------------------------------------------- /ordenar/bogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ordenar/bogo.js -------------------------------------------------------------------------------- /ordenar/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ordenar/bubble.js -------------------------------------------------------------------------------- /ordenar/pancake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ordenar/pancake.js -------------------------------------------------------------------------------- /ordenar/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/ordenar/selection.js -------------------------------------------------------------------------------- /palindromo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/palindromo/README.md -------------------------------------------------------------------------------- /palindromo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/palindromo/index.js -------------------------------------------------------------------------------- /palindromo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/palindromo/package-lock.json -------------------------------------------------------------------------------- /palindromo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/palindromo/package.json -------------------------------------------------------------------------------- /palindromo/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/palindromo/test/index.js -------------------------------------------------------------------------------- /pangrama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/pangrama/README.md -------------------------------------------------------------------------------- /pangrama/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/pangrama/index.js -------------------------------------------------------------------------------- /pangrama/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/pangrama/package-lock.json -------------------------------------------------------------------------------- /pangrama/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/pangrama/package.json -------------------------------------------------------------------------------- /pangrama/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/pangrama/test/index.js -------------------------------------------------------------------------------- /shuffle-perfeito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/shuffle-perfeito/README.md -------------------------------------------------------------------------------- /shuffle-perfeito/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/shuffle-perfeito/index.js -------------------------------------------------------------------------------- /shuffle-perfeito/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/shuffle-perfeito/package-lock.json -------------------------------------------------------------------------------- /shuffle-perfeito/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/shuffle-perfeito/package.json -------------------------------------------------------------------------------- /triangulo-de-pascal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/triangulo-de-pascal/README.md -------------------------------------------------------------------------------- /triangulo-de-pascal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/triangulo-de-pascal/index.js -------------------------------------------------------------------------------- /triangulo-de-pascal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/triangulo-de-pascal/package-lock.json -------------------------------------------------------------------------------- /triangulo-de-pascal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reprograma/t6-logica/HEAD/triangulo-de-pascal/package.json --------------------------------------------------------------------------------