Skip to content

Advent Of Code

Advent Of Codeλ︎

Advent of Code

Advent of Code is the annual coding challenge with a festive theme. Each day there is a new challenge in two parts, the first fairly easy the second a little more involved. The challenges are an investment of your time to complete them all, although even trying just a few is enough to help you think in different ways.

Every programming language requires regular practice to maintain your skills. A full time developer role gives lots of opportunities to practice every day, however, its often focused in around solving problems within a specific business domain, with little time to explore others. The Advent of Code puts you in a different domain, so its great for extending your coding experiences.

Solving challenges in a different language is another great way to extend your experiences, so here are some tips and examples for solving the advent of code in Clojure.

Solving challengesλ︎

  • Keep the solution as simple as possible. Its very easy to over-complicate the solution and end up simply confusing yourself.
  • Don't try and make the perfect solution. Write something that works, this will give you a nice ego boost. Then you can experiment with the code and see if you can improve your approach.
  • Break down the problem into the simplest thing you can solve first. Trying to solve a problem all at once will quickly have you going around in circles.
  • Keep all the code and make notes. I use a a design journal in my projects to document my thinking process, capture decisions that worked and those that didn't work for this project. The journal is a great way to cement learning from solving the challenge.
  • Challenges are only accessible from their day of the month onwards. There is a count-down clock displayed on the next challenge to open, so you know when it will be available. Don't feel pressured to keep up with the challenges though, enjoy the experience and have fun, you will learn more that way.

Advent Of Code 2019 Day 1 challenge snippet

Coding videoλ︎

A video guide to solving the first challenge of Advent of Code from 2018, trying out different solutions at increasing levels of abstraction. With each level of abstraction it helps to think in a more functional way.

Creating a project for the challengeλ︎

clojure -T:project/create :template lib practicalli.advent-of-clojure-code/2019

Create a new Clojure file for each of the daily challenges. It makes sense to keep both parts of each day in the same file.

Practicalli Advent Of Code solutions repository

practicalli/advent-of-clojure-code-2019

Useful Resources And Examplesλ︎

Videos and code solutions to many challenges from 2019 and past years.

#adventofcode channel in the Clojurians slack channel discusses challenges and solutions, especially during December when the challenge takes place.