Skip to content

dcowley/advent-of-code-kotlin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code Kotlin

A Kotlin project to solve the daily programming puzzles presented during Advent of Code1, created using the JetBrains Advent of Code Kotlin Template.

If you're stuck with Kotlin-specific questions or anything related to this template, check out the following resources:

Structure

.
├── project.yaml            Amper project configuration file
└── YYYY                    AoC year
    ├── module.yaml         Amper module configuration file
    └── src
        ├── DayN.kt             An empty implementation for the Nth AoC day
        └── Utils.kt            A set of utility methods shared across days

Footnotes

  1. Advent of Code – An annual event of Christmas-oriented programming challenges started December 2015. Every year since then, beginning on the first day of December, a programming puzzle is published every day for twenty-five days. You can solve the puzzle and provide an answer using the language of your choice.