Skip to content

Corniel/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5b58c55 · Feb 18, 2025
Feb 18, 2025
Nov 25, 2024
Dec 1, 2020
Dec 10, 2024
Dec 15, 2024
Dec 10, 2024
Nov 26, 2024
Feb 3, 2025
Dec 25, 2024
Dec 1, 2020
Jan 15, 2025
Dec 3, 2024
Dec 25, 2024
Dec 10, 2024
Feb 3, 2025

Repository files navigation

adventofcode.com

                        *
                       <o>
                      <o>O>
                     <o>>O>>
                    <<O>>>o>>
                   <<o<O>>@>>>
                  <<*<<@>>>*>>>
                 <<@<<<O>>>@>@>>
                <<O>>o<<<o<<*>>>>
               <<o<<<O<*<@>@>>>O>>
              <@<O<<<*<@<<@<o>@>>>>
             <<*>o<*>>>*<<<O<<<O>>>>
            <*>>>O>>>@<@>>>O<<<@<<<*>
           <<o>*<o>O<<O>>>O>>*>>>o>>o>
          <<@<<<@>>O<o<@<<<*>>>o>>>*<O>
         <O<<<o<o<<*<<<@>@>>>O<<<o>>>o>>
        <<o>>*<O<@<<*>*>>*<@<<O<<<O>>>*>>
       <O>>O>>>*<<O<*<<o<*<<o<O<*>>>@<<o>>
      <<O<@<O<<<o<o>>>O<o>O>>>O<<*>>@>>o>*>
     <<@<<<O<<o<o<<*>o>*<*<<o<<<*>>o>o>o<@>>
    <<@<<<O>>O<<<*>@>>>@<<*<@>>O>>>o<*>>>O>O>
   <<o<*<<<*>>>o<<@<<<O>@<<*<*>>*<<o<<<@<@>>*>
  <*>o<<<O>>>o<<O>*>@<<@>O>@>@>>@<O<@>>>@<O<o>>
 <o>>>O>O<<O<<<*<O>>O>>>O<o<<@<<<o>>>O<o>>>O>>>>
<@<<@>o>*>>O<o>>o<*>>>O<<<@>>*<<<O<O>O>@>>>o<<*>>
                      |   |
                      |   |
           _  _ __ ___|___|___ __ _  _

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as a speed contest, interview prep, company training, university coursework, practice problems, or to challenge each other.

Participating friends/colleagues

Gathering of Tweakers.net

Solving times

I started participating in 2020. I have, since then, also solved others. Furthermore, living in the Netherlands, and being a night owl, getting myself behind a screen at 6:00 (local time) is hard. Nevertheless, I solved some of them within an hour. All results can fe found here: Solving.md.

Lines of Code (LoC)

When a measure becomes a target, it ceases to be a good measure. We all know it to be true, so keeping track of the lines of code per puzzle is questionable, nevertheless, I do: LoC.md.

Note that comments, whitespace, namespace declarations, main class declarations, and lines only containing brackets or attributes are ignored.

Durations

Another measure that should not become a target (but secretly is): durations. An overview of my results can be found here: Durations.md.

Unit test driven

All puzzles can be run as unit tests. To reduce plumbing code I've extended on NUnit. All puzzles have the following template:

namespace Advent_of_Code_@Year;

[Category(Category.SomeCatagory)]
public class Day_@Day
{
    [Example(answer: 666, "Short Example")]
    [Puzzle(answer: 666, O.μs10)]
    public long part_one(string str)
    {
        throw new NoAnswer();
    }

    [Example(answer: 666, "Short Example")]
    [Puzzle(answer: 666, O.μs10)]
    public long part_two(string str)
    {
        throw new NoAnswer();
    }
}

About

Advent of Code solutions by me

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages