Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 764 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 764 Bytes

Advent of Code

This repo is for my solutions to the annual Advent of Code event.

To run

mill adventofcode.runProblem -d 1
mill adventofcode.runProblem -y 2018 -d 1

Things I Learned

Scala

  • If you're creating really big lists, append to the head.
    • Since Lists are LinkedLists, it has to traverse the whole list to append to the end.