├── .gitignore ├── .scripts ├── Main.hs └── screencasts.txt ├── 01-rust ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.rs └── sample.txt ├── 02-haskell ├── .gitignore ├── Main.hs ├── Makefile ├── README.md ├── input.txt └── sample.txt ├── 03-java ├── .gitignore ├── Main.java ├── Makefile ├── README.md ├── input.txt └── sample.txt ├── 04-d ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.d ├── sample-01.txt ├── sample-02.txt └── sample-03.txt ├── 05-c++ ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.cpp └── sample.txt ├── 06-python ├── .gitignore ├── Makefile ├── README.md └── main.py ├── 07-go ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.go ├── sample-01.txt └── sample-02.txt ├── 08-js ├── Makefile ├── README.md ├── input.txt ├── main.js └── sample.txt ├── 09-ocaml ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.ml └── sample.txt ├── 10-c ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.c ├── sample-01.txt └── sample-02.txt ├── 11-nim ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.nim └── sample.txt ├── 12-perl ├── Makefile ├── README.md ├── input.txt ├── main.pl └── sample.txt ├── 13-csharp ├── .gitignore ├── Main.cs ├── Makefile ├── README.md ├── input.txt └── sample.txt ├── 14-php ├── Makefile ├── README.md ├── index.php ├── input.txt ├── sample-01.txt └── sample-02.txt ├── 15-pascal ├── .gitignore ├── Makefile ├── README.md └── main.pas ├── 16-ruby ├── Makefile ├── README.md ├── input.txt ├── main.rb ├── sample-01.txt └── sample-02.txt ├── 17-scala ├── .gitignore ├── Main.scala ├── Makefile ├── README.md ├── input.txt └── sample.txt ├── 18-kotlin ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.kt └── sample.txt ├── 19-lua ├── Makefile ├── README.md ├── input-01.txt ├── input-02.txt ├── main.lua └── sample.txt ├── 20-julia ├── Makefile ├── README.md ├── input.txt ├── main.jl ├── output.txt └── sample.txt ├── 21-racket ├── Makefile ├── README.md ├── input.txt ├── main.rkt └── sample.txt ├── 22-groovy ├── Makefile ├── README.md ├── input.txt ├── main.groovy └── sample.txt ├── 23-dart ├── .gitignore ├── Makefile ├── README.md ├── input.txt ├── main.dart └── sample.txt ├── 24-ada ├── .gitignore ├── Makefile ├── README.md ├── day24.adb ├── input.txt └── sample.txt ├── 25-asm ├── .gitignore ├── Makefile ├── README.md ├── algo.txt └── main.asm ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── thumbnail.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /.scripts/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/.scripts/Main.hs -------------------------------------------------------------------------------- /.scripts/screencasts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/.scripts/screencasts.txt -------------------------------------------------------------------------------- /01-rust/.gitignore: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /01-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/01-rust/Makefile -------------------------------------------------------------------------------- /01-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/01-rust/README.md -------------------------------------------------------------------------------- /01-rust/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/01-rust/input.txt -------------------------------------------------------------------------------- /01-rust/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/01-rust/main.rs -------------------------------------------------------------------------------- /01-rust/sample.txt: -------------------------------------------------------------------------------- 1 | 1721 2 | 979 3 | 366 4 | 299 5 | 675 6 | 1456 7 | -------------------------------------------------------------------------------- /02-haskell/.gitignore: -------------------------------------------------------------------------------- 1 | Main 2 | *.hi 3 | *.o 4 | -------------------------------------------------------------------------------- /02-haskell/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/02-haskell/Main.hs -------------------------------------------------------------------------------- /02-haskell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/02-haskell/Makefile -------------------------------------------------------------------------------- /02-haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/02-haskell/README.md -------------------------------------------------------------------------------- /02-haskell/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/02-haskell/input.txt -------------------------------------------------------------------------------- /02-haskell/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/02-haskell/sample.txt -------------------------------------------------------------------------------- /03-java/.gitignore: -------------------------------------------------------------------------------- 1 | *.class -------------------------------------------------------------------------------- /03-java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/03-java/Main.java -------------------------------------------------------------------------------- /03-java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/03-java/Makefile -------------------------------------------------------------------------------- /03-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/03-java/README.md -------------------------------------------------------------------------------- /03-java/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/03-java/input.txt -------------------------------------------------------------------------------- /03-java/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/03-java/sample.txt -------------------------------------------------------------------------------- /04-d/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | *.o 3 | -------------------------------------------------------------------------------- /04-d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/Makefile -------------------------------------------------------------------------------- /04-d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/README.md -------------------------------------------------------------------------------- /04-d/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/input.txt -------------------------------------------------------------------------------- /04-d/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/main.d -------------------------------------------------------------------------------- /04-d/sample-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/sample-01.txt -------------------------------------------------------------------------------- /04-d/sample-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/sample-02.txt -------------------------------------------------------------------------------- /04-d/sample-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/04-d/sample-03.txt -------------------------------------------------------------------------------- /05-c++/.gitignore: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /05-c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/05-c++/Makefile -------------------------------------------------------------------------------- /05-c++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/05-c++/README.md -------------------------------------------------------------------------------- /05-c++/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/05-c++/input.txt -------------------------------------------------------------------------------- /05-c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/05-c++/main.cpp -------------------------------------------------------------------------------- /05-c++/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/05-c++/sample.txt -------------------------------------------------------------------------------- /06-python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | *.txt -------------------------------------------------------------------------------- /06-python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/06-python/Makefile -------------------------------------------------------------------------------- /06-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/06-python/README.md -------------------------------------------------------------------------------- /06-python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/06-python/main.py -------------------------------------------------------------------------------- /07-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.dot 2 | *.png 3 | main -------------------------------------------------------------------------------- /07-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/Makefile -------------------------------------------------------------------------------- /07-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/README.md -------------------------------------------------------------------------------- /07-go/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/input.txt -------------------------------------------------------------------------------- /07-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/main.go -------------------------------------------------------------------------------- /07-go/sample-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/sample-01.txt -------------------------------------------------------------------------------- /07-go/sample-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/07-go/sample-02.txt -------------------------------------------------------------------------------- /08-js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/08-js/Makefile -------------------------------------------------------------------------------- /08-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/08-js/README.md -------------------------------------------------------------------------------- /08-js/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/08-js/input.txt -------------------------------------------------------------------------------- /08-js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/08-js/main.js -------------------------------------------------------------------------------- /08-js/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/08-js/sample.txt -------------------------------------------------------------------------------- /09-ocaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/.gitignore -------------------------------------------------------------------------------- /09-ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/Makefile -------------------------------------------------------------------------------- /09-ocaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/README.md -------------------------------------------------------------------------------- /09-ocaml/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/input.txt -------------------------------------------------------------------------------- /09-ocaml/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/main.ml -------------------------------------------------------------------------------- /09-ocaml/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/09-ocaml/sample.txt -------------------------------------------------------------------------------- /10-c/.gitignore: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /10-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/10-c/Makefile -------------------------------------------------------------------------------- /10-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/10-c/README.md -------------------------------------------------------------------------------- /10-c/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/10-c/input.txt -------------------------------------------------------------------------------- /10-c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/10-c/main.c -------------------------------------------------------------------------------- /10-c/sample-01.txt: -------------------------------------------------------------------------------- 1 | 16 2 | 10 3 | 15 4 | 5 5 | 1 6 | 11 7 | 7 8 | 19 9 | 6 10 | 12 11 | 4 12 | -------------------------------------------------------------------------------- /10-c/sample-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/10-c/sample-02.txt -------------------------------------------------------------------------------- /11-nim/.gitignore: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /11-nim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/11-nim/Makefile -------------------------------------------------------------------------------- /11-nim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/11-nim/README.md -------------------------------------------------------------------------------- /11-nim/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/11-nim/input.txt -------------------------------------------------------------------------------- /11-nim/main.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/11-nim/main.nim -------------------------------------------------------------------------------- /11-nim/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/11-nim/sample.txt -------------------------------------------------------------------------------- /12-perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/12-perl/Makefile -------------------------------------------------------------------------------- /12-perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/12-perl/README.md -------------------------------------------------------------------------------- /12-perl/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/12-perl/input.txt -------------------------------------------------------------------------------- /12-perl/main.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/12-perl/main.pl -------------------------------------------------------------------------------- /12-perl/sample.txt: -------------------------------------------------------------------------------- 1 | F10 2 | N3 3 | F7 4 | R90 5 | F11 6 | -------------------------------------------------------------------------------- /13-csharp/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe -------------------------------------------------------------------------------- /13-csharp/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/13-csharp/Main.cs -------------------------------------------------------------------------------- /13-csharp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/13-csharp/Makefile -------------------------------------------------------------------------------- /13-csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/13-csharp/README.md -------------------------------------------------------------------------------- /13-csharp/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/13-csharp/input.txt -------------------------------------------------------------------------------- /13-csharp/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/13-csharp/sample.txt -------------------------------------------------------------------------------- /14-php/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/Makefile -------------------------------------------------------------------------------- /14-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/README.md -------------------------------------------------------------------------------- /14-php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/index.php -------------------------------------------------------------------------------- /14-php/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/input.txt -------------------------------------------------------------------------------- /14-php/sample-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/sample-01.txt -------------------------------------------------------------------------------- /14-php/sample-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/14-php/sample-02.txt -------------------------------------------------------------------------------- /15-pascal/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | *.o -------------------------------------------------------------------------------- /15-pascal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/15-pascal/Makefile -------------------------------------------------------------------------------- /15-pascal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/15-pascal/README.md -------------------------------------------------------------------------------- /15-pascal/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/15-pascal/main.pas -------------------------------------------------------------------------------- /16-ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/Makefile -------------------------------------------------------------------------------- /16-ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/README.md -------------------------------------------------------------------------------- /16-ruby/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/input.txt -------------------------------------------------------------------------------- /16-ruby/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/main.rb -------------------------------------------------------------------------------- /16-ruby/sample-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/sample-01.txt -------------------------------------------------------------------------------- /16-ruby/sample-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/16-ruby/sample-02.txt -------------------------------------------------------------------------------- /17-scala/.gitignore: -------------------------------------------------------------------------------- 1 | *.class -------------------------------------------------------------------------------- /17-scala/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/17-scala/Main.scala -------------------------------------------------------------------------------- /17-scala/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/17-scala/Makefile -------------------------------------------------------------------------------- /17-scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/17-scala/README.md -------------------------------------------------------------------------------- /17-scala/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/17-scala/input.txt -------------------------------------------------------------------------------- /17-scala/sample.txt: -------------------------------------------------------------------------------- 1 | .#. 2 | ..# 3 | ### 4 | -------------------------------------------------------------------------------- /18-kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar -------------------------------------------------------------------------------- /18-kotlin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/18-kotlin/Makefile -------------------------------------------------------------------------------- /18-kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/18-kotlin/README.md -------------------------------------------------------------------------------- /18-kotlin/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/18-kotlin/input.txt -------------------------------------------------------------------------------- /18-kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/18-kotlin/main.kt -------------------------------------------------------------------------------- /18-kotlin/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/18-kotlin/sample.txt -------------------------------------------------------------------------------- /19-lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/Makefile -------------------------------------------------------------------------------- /19-lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/README.md -------------------------------------------------------------------------------- /19-lua/input-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/input-01.txt -------------------------------------------------------------------------------- /19-lua/input-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/input-02.txt -------------------------------------------------------------------------------- /19-lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/main.lua -------------------------------------------------------------------------------- /19-lua/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/19-lua/sample.txt -------------------------------------------------------------------------------- /20-julia/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/Makefile -------------------------------------------------------------------------------- /20-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/README.md -------------------------------------------------------------------------------- /20-julia/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/input.txt -------------------------------------------------------------------------------- /20-julia/main.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/main.jl -------------------------------------------------------------------------------- /20-julia/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/output.txt -------------------------------------------------------------------------------- /20-julia/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/20-julia/sample.txt -------------------------------------------------------------------------------- /21-racket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/21-racket/Makefile -------------------------------------------------------------------------------- /21-racket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/21-racket/README.md -------------------------------------------------------------------------------- /21-racket/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/21-racket/input.txt -------------------------------------------------------------------------------- /21-racket/main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/21-racket/main.rkt -------------------------------------------------------------------------------- /21-racket/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/21-racket/sample.txt -------------------------------------------------------------------------------- /22-groovy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/22-groovy/Makefile -------------------------------------------------------------------------------- /22-groovy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/22-groovy/README.md -------------------------------------------------------------------------------- /22-groovy/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/22-groovy/input.txt -------------------------------------------------------------------------------- /22-groovy/main.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/22-groovy/main.groovy -------------------------------------------------------------------------------- /22-groovy/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/22-groovy/sample.txt -------------------------------------------------------------------------------- /23-dart/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /23-dart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/23-dart/Makefile -------------------------------------------------------------------------------- /23-dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/23-dart/README.md -------------------------------------------------------------------------------- /23-dart/input.txt: -------------------------------------------------------------------------------- 1 | 368195742 2 | -------------------------------------------------------------------------------- /23-dart/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/23-dart/main.dart -------------------------------------------------------------------------------- /23-dart/sample.txt: -------------------------------------------------------------------------------- 1 | 389125467 2 | -------------------------------------------------------------------------------- /24-ada/.gitignore: -------------------------------------------------------------------------------- 1 | day24 2 | *.ali 3 | *.o 4 | -------------------------------------------------------------------------------- /24-ada/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/24-ada/Makefile -------------------------------------------------------------------------------- /24-ada/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/24-ada/README.md -------------------------------------------------------------------------------- /24-ada/day24.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/24-ada/day24.adb -------------------------------------------------------------------------------- /24-ada/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/24-ada/input.txt -------------------------------------------------------------------------------- /24-ada/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/24-ada/sample.txt -------------------------------------------------------------------------------- /25-asm/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | *.o -------------------------------------------------------------------------------- /25-asm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/25-asm/Makefile -------------------------------------------------------------------------------- /25-asm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/25-asm/README.md -------------------------------------------------------------------------------- /25-asm/algo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/25-asm/algo.txt -------------------------------------------------------------------------------- /25-asm/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/25-asm/main.asm -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/README.md -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/aoc-2020/HEAD/thumbnail.png --------------------------------------------------------------------------------