Today we need to implement a third address mode for our Intcode computer of Day 5. The code repository for my solutions can be found as usual on GitHub and GitLab.
Category archives: Advent of Code – 2019
Advent of Code 2019 – Day 8
Via the Digital Sending Network we receive an image that needs to be decoded. Several layers of the image are transmitted. We need to generate the resulting image. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 7
Today we need to use our computer emulator, to generate the perfect settings for amplifiers to reach Santa. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 6
Today we need to calculate orbits for a given orbit map – and how far we are away from Santa Claus. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of code 2019 – Day 5
Today’s mission is, to extend the computer emulator of Day 2. It is necessary to execute a diagnostic tool (input data), which generates diagnostic codes, which will be needed for submission. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 4
The Task for Day 04 was quite easy – compared to the previous ones. For the given password-rules, you have to calculate, how many valid passwords exists in a given range. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 3
Today, we’ll have to write a program, to detect wire-interconnections. Since the input data represents a big map, it’s important to write efficient code. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 2
Today, we’ll have to write a simple computer emulator. With a minimal instruction set, we have to execute given commands and return a part of the memory. The code repository for my solutions can be found as usual on GitHub and GitLab.
Advent of Code 2019 – Day 1
Another year – another Advent of Code!Advent of Code is an annual Advent calender of 25 daily programming puzzles. For 2019, I want to end the year with getting used to a new – at least for me – programming language and solve some of the puzzles.My choice for these puzzles is Go. So let’s …