├── .gitignore ├── README.md ├── package.json └── retos ├── reto-1 ├── README.md ├── alternativas │ └── 1.ts ├── main.ts ├── mejor-solucion.ts └── reto1.test.js ├── reto-10 ├── README.md └── main.ts ├── reto-11 ├── README.md └── main.ts ├── reto-12 └── main.ts ├── reto-13 └── main.ts ├── reto-14 └── main.ts ├── reto-2 ├── README.md ├── main.ts └── reto2.test.js ├── reto-3 ├── README.md ├── main.ts └── reto3.test.js ├── reto-4 ├── README.md ├── main.ts └── reto4.test.js ├── reto-5 ├── README.md ├── main.ts └── reto5.test.js ├── reto-6 ├── README.md ├── main.ts └── reto6.test.js ├── reto-7 ├── README.md └── main.ts ├── reto-8 ├── README.md └── main.ts └── reto-9 ├── README.md └── main.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.lock* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/package.json -------------------------------------------------------------------------------- /retos/reto-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-1/README.md -------------------------------------------------------------------------------- /retos/reto-1/alternativas/1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-1/alternativas/1.ts -------------------------------------------------------------------------------- /retos/reto-1/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-1/main.ts -------------------------------------------------------------------------------- /retos/reto-1/mejor-solucion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-1/mejor-solucion.ts -------------------------------------------------------------------------------- /retos/reto-1/reto1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-1/reto1.test.js -------------------------------------------------------------------------------- /retos/reto-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-10/README.md -------------------------------------------------------------------------------- /retos/reto-10/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-10/main.ts -------------------------------------------------------------------------------- /retos/reto-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-11/README.md -------------------------------------------------------------------------------- /retos/reto-11/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-11/main.ts -------------------------------------------------------------------------------- /retos/reto-12/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-12/main.ts -------------------------------------------------------------------------------- /retos/reto-13/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-13/main.ts -------------------------------------------------------------------------------- /retos/reto-14/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-14/main.ts -------------------------------------------------------------------------------- /retos/reto-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-2/README.md -------------------------------------------------------------------------------- /retos/reto-2/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-2/main.ts -------------------------------------------------------------------------------- /retos/reto-2/reto2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-2/reto2.test.js -------------------------------------------------------------------------------- /retos/reto-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-3/README.md -------------------------------------------------------------------------------- /retos/reto-3/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-3/main.ts -------------------------------------------------------------------------------- /retos/reto-3/reto3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-3/reto3.test.js -------------------------------------------------------------------------------- /retos/reto-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-4/README.md -------------------------------------------------------------------------------- /retos/reto-4/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-4/main.ts -------------------------------------------------------------------------------- /retos/reto-4/reto4.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-4/reto4.test.js -------------------------------------------------------------------------------- /retos/reto-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-5/README.md -------------------------------------------------------------------------------- /retos/reto-5/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-5/main.ts -------------------------------------------------------------------------------- /retos/reto-5/reto5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-5/reto5.test.js -------------------------------------------------------------------------------- /retos/reto-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-6/README.md -------------------------------------------------------------------------------- /retos/reto-6/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-6/main.ts -------------------------------------------------------------------------------- /retos/reto-6/reto6.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-6/reto6.test.js -------------------------------------------------------------------------------- /retos/reto-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-7/README.md -------------------------------------------------------------------------------- /retos/reto-7/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-7/main.ts -------------------------------------------------------------------------------- /retos/reto-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-8/README.md -------------------------------------------------------------------------------- /retos/reto-8/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-8/main.ts -------------------------------------------------------------------------------- /retos/reto-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-9/README.md -------------------------------------------------------------------------------- /retos/reto-9/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achalogy/advent-js-2023/HEAD/retos/reto-9/main.ts --------------------------------------------------------------------------------