├── LICENSE ├── README.md ├── aoc ├── 2021 │ ├── 01-sonar-sweep.md │ ├── 02-dive.md │ ├── 03-binary-diagnostic.md │ ├── 04-giant-squid.md │ ├── 05-hydrothermal-venture.md │ ├── 06-lanternfish.md │ ├── 07-treachery-of-whales.md │ ├── 08-seven-segment-search.md │ ├── 09-smoke-basin.md │ ├── 10-syntax-scoring.md │ ├── 11-dumbo-octopus.md │ ├── 12-passage-pathing.md │ ├── 13-transparent-origami.md │ ├── 14-extended-polymerization.md │ ├── README.md │ ├── img │ │ ├── lanternfish.jpg │ │ └── vents.jpg │ ├── input │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ └── 14.txt │ └── test │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ └── 15.txt └── 2022 │ ├── 01.md │ ├── 02.md │ ├── 03.md │ ├── 04.md │ ├── 05.md │ ├── 06.md │ ├── 07.md │ ├── 08.md │ ├── 09.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 14.md │ ├── 15.md │ ├── 16.md │ ├── 17.gif │ ├── 17.md │ ├── 18.md │ ├── README.md │ ├── img │ └── crates.gif │ ├── input │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ └── 25.txt │ ├── q │ ├── 01.q │ ├── 02.q │ ├── 03.q │ ├── 04.q │ ├── 05.q │ ├── 06.q │ ├── 07.q │ ├── 08.q │ ├── 09.q │ ├── 10.q │ ├── 11.q │ ├── 12.q │ ├── 13.q │ ├── 14.q │ ├── 15.q │ ├── 16.q │ ├── 17.q │ ├── 18.q │ ├── 19.c │ ├── 19.q │ ├── 20.q │ ├── 21.q │ ├── 22.q │ ├── 23.q │ ├── 24.q │ └── 25.q │ └── test │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ └── 25.txt ├── essays ├── allthatjazz.md ├── findingprimes.md ├── img │ ├── classic-jazz.jpg │ ├── lightbulb-wide.png │ ├── mp3s-after.png │ ├── mp3s-before.png │ ├── playlist.png │ └── prime-numbers.jpg └── zenmonks.md ├── euler ├── 01.md ├── 02.md ├── 03.md ├── 03.q ├── 04.md ├── 04.q ├── 05.md ├── 05.q ├── 06.md ├── 06.q ├── 07.md ├── 07.q ├── 07a.q ├── 08.q ├── 08.txt ├── 09.md ├── 11.q ├── 11.txt ├── 800px-PrimitivePythagoreanTriplesRev08.svg.png └── Sieve_of_Eratosthenes_animation.gif ├── games ├── boggle.md ├── fizzbuzz.md ├── img │ ├── boggle.jpg │ ├── fizzbuzz.png │ ├── klondike.png │ └── scrabble.jpg ├── klondike.md ├── klondike.q └── scrabble.md ├── leetcode ├── 53.md ├── 53.q ├── 976.md └── 976.q ├── puzzles ├── 100prisoners.md ├── img │ └── cats-cradle.jpg ├── run-length-encoding.md └── strings.md ├── resources.md └── rosetta ├── abc-problem.md ├── abundant-odds.md ├── four-magic.md ├── img ├── 2ADY7DK.jpg ├── 2C9PF21.jpg ├── CN6580.jpg ├── G36AKX.jpg ├── PHPHX0.jpg ├── WJEGGB.jpg └── name-game.png ├── name-game.md ├── sum-say.md ├── word-wheel.md ├── ww.q └── xmas-days.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/README.md -------------------------------------------------------------------------------- /aoc/2021/01-sonar-sweep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/01-sonar-sweep.md -------------------------------------------------------------------------------- /aoc/2021/02-dive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/02-dive.md -------------------------------------------------------------------------------- /aoc/2021/03-binary-diagnostic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/03-binary-diagnostic.md -------------------------------------------------------------------------------- /aoc/2021/04-giant-squid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/04-giant-squid.md -------------------------------------------------------------------------------- /aoc/2021/05-hydrothermal-venture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/05-hydrothermal-venture.md -------------------------------------------------------------------------------- /aoc/2021/06-lanternfish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/06-lanternfish.md -------------------------------------------------------------------------------- /aoc/2021/07-treachery-of-whales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/07-treachery-of-whales.md -------------------------------------------------------------------------------- /aoc/2021/08-seven-segment-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/08-seven-segment-search.md -------------------------------------------------------------------------------- /aoc/2021/09-smoke-basin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/09-smoke-basin.md -------------------------------------------------------------------------------- /aoc/2021/10-syntax-scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/10-syntax-scoring.md -------------------------------------------------------------------------------- /aoc/2021/11-dumbo-octopus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/11-dumbo-octopus.md -------------------------------------------------------------------------------- /aoc/2021/12-passage-pathing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/12-passage-pathing.md -------------------------------------------------------------------------------- /aoc/2021/13-transparent-origami.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/13-transparent-origami.md -------------------------------------------------------------------------------- /aoc/2021/14-extended-polymerization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/14-extended-polymerization.md -------------------------------------------------------------------------------- /aoc/2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/README.md -------------------------------------------------------------------------------- /aoc/2021/img/lanternfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/img/lanternfish.jpg -------------------------------------------------------------------------------- /aoc/2021/img/vents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/img/vents.jpg -------------------------------------------------------------------------------- /aoc/2021/input/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/01.txt -------------------------------------------------------------------------------- /aoc/2021/input/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/02.txt -------------------------------------------------------------------------------- /aoc/2021/input/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/03.txt -------------------------------------------------------------------------------- /aoc/2021/input/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/04.txt -------------------------------------------------------------------------------- /aoc/2021/input/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/05.txt -------------------------------------------------------------------------------- /aoc/2021/input/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/06.txt -------------------------------------------------------------------------------- /aoc/2021/input/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/07.txt -------------------------------------------------------------------------------- /aoc/2021/input/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/08.txt -------------------------------------------------------------------------------- /aoc/2021/input/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/09.txt -------------------------------------------------------------------------------- /aoc/2021/input/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/10.txt -------------------------------------------------------------------------------- /aoc/2021/input/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/11.txt -------------------------------------------------------------------------------- /aoc/2021/input/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/12.txt -------------------------------------------------------------------------------- /aoc/2021/input/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/13.txt -------------------------------------------------------------------------------- /aoc/2021/input/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/input/14.txt -------------------------------------------------------------------------------- /aoc/2021/test/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/01.txt -------------------------------------------------------------------------------- /aoc/2021/test/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/02.txt -------------------------------------------------------------------------------- /aoc/2021/test/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/03.txt -------------------------------------------------------------------------------- /aoc/2021/test/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/04.txt -------------------------------------------------------------------------------- /aoc/2021/test/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/05.txt -------------------------------------------------------------------------------- /aoc/2021/test/06.txt: -------------------------------------------------------------------------------- 1 | 3,4,3,1,2 -------------------------------------------------------------------------------- /aoc/2021/test/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/07.txt -------------------------------------------------------------------------------- /aoc/2021/test/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/08.txt -------------------------------------------------------------------------------- /aoc/2021/test/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/09.txt -------------------------------------------------------------------------------- /aoc/2021/test/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/10.txt -------------------------------------------------------------------------------- /aoc/2021/test/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/11.txt -------------------------------------------------------------------------------- /aoc/2021/test/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/12.txt -------------------------------------------------------------------------------- /aoc/2021/test/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/13.txt -------------------------------------------------------------------------------- /aoc/2021/test/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/14.txt -------------------------------------------------------------------------------- /aoc/2021/test/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2021/test/15.txt -------------------------------------------------------------------------------- /aoc/2022/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/01.md -------------------------------------------------------------------------------- /aoc/2022/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/02.md -------------------------------------------------------------------------------- /aoc/2022/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/03.md -------------------------------------------------------------------------------- /aoc/2022/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/04.md -------------------------------------------------------------------------------- /aoc/2022/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/05.md -------------------------------------------------------------------------------- /aoc/2022/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/06.md -------------------------------------------------------------------------------- /aoc/2022/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/07.md -------------------------------------------------------------------------------- /aoc/2022/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/08.md -------------------------------------------------------------------------------- /aoc/2022/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/09.md -------------------------------------------------------------------------------- /aoc/2022/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/10.md -------------------------------------------------------------------------------- /aoc/2022/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/11.md -------------------------------------------------------------------------------- /aoc/2022/12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/12.md -------------------------------------------------------------------------------- /aoc/2022/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/13.md -------------------------------------------------------------------------------- /aoc/2022/14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/14.md -------------------------------------------------------------------------------- /aoc/2022/15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/15.md -------------------------------------------------------------------------------- /aoc/2022/16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/16.md -------------------------------------------------------------------------------- /aoc/2022/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/17.gif -------------------------------------------------------------------------------- /aoc/2022/17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/17.md -------------------------------------------------------------------------------- /aoc/2022/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/18.md -------------------------------------------------------------------------------- /aoc/2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/README.md -------------------------------------------------------------------------------- /aoc/2022/img/crates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/img/crates.gif -------------------------------------------------------------------------------- /aoc/2022/input/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/01.txt -------------------------------------------------------------------------------- /aoc/2022/input/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/02.txt -------------------------------------------------------------------------------- /aoc/2022/input/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/03.txt -------------------------------------------------------------------------------- /aoc/2022/input/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/04.txt -------------------------------------------------------------------------------- /aoc/2022/input/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/05.txt -------------------------------------------------------------------------------- /aoc/2022/input/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/06.txt -------------------------------------------------------------------------------- /aoc/2022/input/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/07.txt -------------------------------------------------------------------------------- /aoc/2022/input/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/08.txt -------------------------------------------------------------------------------- /aoc/2022/input/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/09.txt -------------------------------------------------------------------------------- /aoc/2022/input/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/10.txt -------------------------------------------------------------------------------- /aoc/2022/input/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/11.txt -------------------------------------------------------------------------------- /aoc/2022/input/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/12.txt -------------------------------------------------------------------------------- /aoc/2022/input/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/13.txt -------------------------------------------------------------------------------- /aoc/2022/input/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/14.txt -------------------------------------------------------------------------------- /aoc/2022/input/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/15.txt -------------------------------------------------------------------------------- /aoc/2022/input/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/16.txt -------------------------------------------------------------------------------- /aoc/2022/input/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/17.txt -------------------------------------------------------------------------------- /aoc/2022/input/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/18.txt -------------------------------------------------------------------------------- /aoc/2022/input/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/19.txt -------------------------------------------------------------------------------- /aoc/2022/input/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/20.txt -------------------------------------------------------------------------------- /aoc/2022/input/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/21.txt -------------------------------------------------------------------------------- /aoc/2022/input/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/22.txt -------------------------------------------------------------------------------- /aoc/2022/input/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/23.txt -------------------------------------------------------------------------------- /aoc/2022/input/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/24.txt -------------------------------------------------------------------------------- /aoc/2022/input/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/input/25.txt -------------------------------------------------------------------------------- /aoc/2022/q/01.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/01.q -------------------------------------------------------------------------------- /aoc/2022/q/02.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/02.q -------------------------------------------------------------------------------- /aoc/2022/q/03.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/03.q -------------------------------------------------------------------------------- /aoc/2022/q/04.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/04.q -------------------------------------------------------------------------------- /aoc/2022/q/05.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/05.q -------------------------------------------------------------------------------- /aoc/2022/q/06.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/06.q -------------------------------------------------------------------------------- /aoc/2022/q/07.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/07.q -------------------------------------------------------------------------------- /aoc/2022/q/08.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/08.q -------------------------------------------------------------------------------- /aoc/2022/q/09.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/09.q -------------------------------------------------------------------------------- /aoc/2022/q/10.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/10.q -------------------------------------------------------------------------------- /aoc/2022/q/11.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/11.q -------------------------------------------------------------------------------- /aoc/2022/q/12.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/12.q -------------------------------------------------------------------------------- /aoc/2022/q/13.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/13.q -------------------------------------------------------------------------------- /aoc/2022/q/14.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/14.q -------------------------------------------------------------------------------- /aoc/2022/q/15.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/15.q -------------------------------------------------------------------------------- /aoc/2022/q/16.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/16.q -------------------------------------------------------------------------------- /aoc/2022/q/17.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/17.q -------------------------------------------------------------------------------- /aoc/2022/q/18.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/18.q -------------------------------------------------------------------------------- /aoc/2022/q/19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/19.c -------------------------------------------------------------------------------- /aoc/2022/q/19.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/19.q -------------------------------------------------------------------------------- /aoc/2022/q/20.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/20.q -------------------------------------------------------------------------------- /aoc/2022/q/21.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/21.q -------------------------------------------------------------------------------- /aoc/2022/q/22.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/22.q -------------------------------------------------------------------------------- /aoc/2022/q/23.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/23.q -------------------------------------------------------------------------------- /aoc/2022/q/24.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/24.q -------------------------------------------------------------------------------- /aoc/2022/q/25.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/q/25.q -------------------------------------------------------------------------------- /aoc/2022/test/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/01.txt -------------------------------------------------------------------------------- /aoc/2022/test/02.txt: -------------------------------------------------------------------------------- 1 | A Y 2 | B X 3 | C Z -------------------------------------------------------------------------------- /aoc/2022/test/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/03.txt -------------------------------------------------------------------------------- /aoc/2022/test/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/04.txt -------------------------------------------------------------------------------- /aoc/2022/test/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/05.txt -------------------------------------------------------------------------------- /aoc/2022/test/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/06.txt -------------------------------------------------------------------------------- /aoc/2022/test/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/07.txt -------------------------------------------------------------------------------- /aoc/2022/test/08.txt: -------------------------------------------------------------------------------- 1 | 30373 2 | 25512 3 | 65332 4 | 33549 5 | 35390 -------------------------------------------------------------------------------- /aoc/2022/test/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/09.txt -------------------------------------------------------------------------------- /aoc/2022/test/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/10.txt -------------------------------------------------------------------------------- /aoc/2022/test/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/11.txt -------------------------------------------------------------------------------- /aoc/2022/test/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/12.txt -------------------------------------------------------------------------------- /aoc/2022/test/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/13.txt -------------------------------------------------------------------------------- /aoc/2022/test/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/14.txt -------------------------------------------------------------------------------- /aoc/2022/test/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/15.txt -------------------------------------------------------------------------------- /aoc/2022/test/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/16.txt -------------------------------------------------------------------------------- /aoc/2022/test/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/17.txt -------------------------------------------------------------------------------- /aoc/2022/test/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/18.txt -------------------------------------------------------------------------------- /aoc/2022/test/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/19.txt -------------------------------------------------------------------------------- /aoc/2022/test/20.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -3 4 | 3 5 | -2 6 | 0 7 | 4 -------------------------------------------------------------------------------- /aoc/2022/test/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/21.txt -------------------------------------------------------------------------------- /aoc/2022/test/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/22.txt -------------------------------------------------------------------------------- /aoc/2022/test/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/23.txt -------------------------------------------------------------------------------- /aoc/2022/test/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/24.txt -------------------------------------------------------------------------------- /aoc/2022/test/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/aoc/2022/test/25.txt -------------------------------------------------------------------------------- /essays/allthatjazz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/allthatjazz.md -------------------------------------------------------------------------------- /essays/findingprimes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/findingprimes.md -------------------------------------------------------------------------------- /essays/img/classic-jazz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/classic-jazz.jpg -------------------------------------------------------------------------------- /essays/img/lightbulb-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/lightbulb-wide.png -------------------------------------------------------------------------------- /essays/img/mp3s-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/mp3s-after.png -------------------------------------------------------------------------------- /essays/img/mp3s-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/mp3s-before.png -------------------------------------------------------------------------------- /essays/img/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/playlist.png -------------------------------------------------------------------------------- /essays/img/prime-numbers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/img/prime-numbers.jpg -------------------------------------------------------------------------------- /essays/zenmonks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/essays/zenmonks.md -------------------------------------------------------------------------------- /euler/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/01.md -------------------------------------------------------------------------------- /euler/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/02.md -------------------------------------------------------------------------------- /euler/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/03.md -------------------------------------------------------------------------------- /euler/03.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/03.q -------------------------------------------------------------------------------- /euler/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/04.md -------------------------------------------------------------------------------- /euler/04.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/04.q -------------------------------------------------------------------------------- /euler/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/05.md -------------------------------------------------------------------------------- /euler/05.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/05.q -------------------------------------------------------------------------------- /euler/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/06.md -------------------------------------------------------------------------------- /euler/06.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/06.q -------------------------------------------------------------------------------- /euler/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/07.md -------------------------------------------------------------------------------- /euler/07.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/07.q -------------------------------------------------------------------------------- /euler/07a.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/07a.q -------------------------------------------------------------------------------- /euler/08.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/08.q -------------------------------------------------------------------------------- /euler/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/08.txt -------------------------------------------------------------------------------- /euler/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/09.md -------------------------------------------------------------------------------- /euler/11.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/11.q -------------------------------------------------------------------------------- /euler/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/11.txt -------------------------------------------------------------------------------- /euler/800px-PrimitivePythagoreanTriplesRev08.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/800px-PrimitivePythagoreanTriplesRev08.svg.png -------------------------------------------------------------------------------- /euler/Sieve_of_Eratosthenes_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/euler/Sieve_of_Eratosthenes_animation.gif -------------------------------------------------------------------------------- /games/boggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/boggle.md -------------------------------------------------------------------------------- /games/fizzbuzz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/fizzbuzz.md -------------------------------------------------------------------------------- /games/img/boggle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/img/boggle.jpg -------------------------------------------------------------------------------- /games/img/fizzbuzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/img/fizzbuzz.png -------------------------------------------------------------------------------- /games/img/klondike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/img/klondike.png -------------------------------------------------------------------------------- /games/img/scrabble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/img/scrabble.jpg -------------------------------------------------------------------------------- /games/klondike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/klondike.md -------------------------------------------------------------------------------- /games/klondike.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/klondike.q -------------------------------------------------------------------------------- /games/scrabble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/games/scrabble.md -------------------------------------------------------------------------------- /leetcode/53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/leetcode/53.md -------------------------------------------------------------------------------- /leetcode/53.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/leetcode/53.q -------------------------------------------------------------------------------- /leetcode/976.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/leetcode/976.md -------------------------------------------------------------------------------- /leetcode/976.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/leetcode/976.q -------------------------------------------------------------------------------- /puzzles/100prisoners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/puzzles/100prisoners.md -------------------------------------------------------------------------------- /puzzles/img/cats-cradle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/puzzles/img/cats-cradle.jpg -------------------------------------------------------------------------------- /puzzles/run-length-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/puzzles/run-length-encoding.md -------------------------------------------------------------------------------- /puzzles/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/puzzles/strings.md -------------------------------------------------------------------------------- /resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/resources.md -------------------------------------------------------------------------------- /rosetta/abc-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/abc-problem.md -------------------------------------------------------------------------------- /rosetta/abundant-odds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/abundant-odds.md -------------------------------------------------------------------------------- /rosetta/four-magic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/four-magic.md -------------------------------------------------------------------------------- /rosetta/img/2ADY7DK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/2ADY7DK.jpg -------------------------------------------------------------------------------- /rosetta/img/2C9PF21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/2C9PF21.jpg -------------------------------------------------------------------------------- /rosetta/img/CN6580.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/CN6580.jpg -------------------------------------------------------------------------------- /rosetta/img/G36AKX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/G36AKX.jpg -------------------------------------------------------------------------------- /rosetta/img/PHPHX0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/PHPHX0.jpg -------------------------------------------------------------------------------- /rosetta/img/WJEGGB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/WJEGGB.jpg -------------------------------------------------------------------------------- /rosetta/img/name-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/img/name-game.png -------------------------------------------------------------------------------- /rosetta/name-game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/name-game.md -------------------------------------------------------------------------------- /rosetta/sum-say.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/sum-say.md -------------------------------------------------------------------------------- /rosetta/word-wheel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/word-wheel.md -------------------------------------------------------------------------------- /rosetta/ww.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/ww.q -------------------------------------------------------------------------------- /rosetta/xmas-days.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qbists/studyq/HEAD/rosetta/xmas-days.md --------------------------------------------------------------------------------