From a9253ccb1bfabd1f5e878e857172fd7cfe6ecdb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Borna=20Rajkovi=C4=87?= Date: Sun, 1 Dec 2024 10:19:26 +0100 Subject: [PATCH] Repository initialization --- .gitignore | 1 + go.mod | 3 +++ readme.md | 7 +++++++ 3 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod create mode 100644 readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c2d52b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/* diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..dbdb426 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module advent_of_code_2024 + +go 1.22 diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..25e774e --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +# Advent of code 2024 + +Welcome to my solution to the [Advent of code](https://adventofcode.com) 2024 contest. + +I've chosen to write my solution is Go (because why not). Because of the time zone in which I live I'm not playing competitly more just because I can and feel like it. + +So if you are interested feel free to browse my solutions.