diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-02 23:48:11 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-02 23:48:11 +0100 |
commit | 9525f09701d12aa1d93b9ac73878f014abf199a3 (patch) | |
tree | 4b36127ff1a1c4da49fbebacb262739c3959f5e4 | |
parent | b40da532b3a3c98a5c6060f8addac0e1e581a3df (diff) | |
download | gleam_aoc2020-9525f09701d12aa1d93b9ac73878f014abf199a3.tar.gz gleam_aoc2020-9525f09701d12aa1d93b9ac73878f014abf199a3.zip |
Update READMEs
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | aoc-2021-kotlin/README.md | 7 | ||||
-rw-r--r-- | aoc-2022-dotnet/README.md | 32 | ||||
-rw-r--r-- | aoc-2022-dotnet/aoc-2022-dotnet.sln | 4 |
4 files changed, 42 insertions, 13 deletions
@@ -1,16 +1,16 @@ # Advent of Code 🎄🌟 Repository storing my solutions to Advent of Code. See other people's solutions [here][awesome]. -> [Advent of Code][aoc] 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. +> [Advent of Code][aoc] 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. ## Years 📅 ### [2021](aoc-2021-kotlin)  - - + -[aoc]: https://adventofcode.com +### [2022](aoc-2022-dotnet) + + [awesome]: https://github.com/Bogdanp/awesome-advent-of-code +[aoc]: https://adventofcode.com diff --git a/aoc-2021-kotlin/README.md b/aoc-2021-kotlin/README.md index dc27235..5f72bcb 100644 --- a/aoc-2021-kotlin/README.md +++ b/aoc-2021-kotlin/README.md @@ -1,13 +1,11 @@ # Advent of Code 2021 in Kotlin  - - + Welcome to the Advent of Code Kotlin project created by [tchojnacki][github] using the [Advent of Code Kotlin Template][template] delivered by JetBrains. ## Progress - | Day | Part 1 | Part 2 | |---------------------------------|:------:|:------:| | Day 1: Sonar Sweep | 🌟 | 🌟 | @@ -36,8 +34,5 @@ Welcome to the Advent of Code Kotlin project created by [tchojnacki][github] usi | Day 24: Arithmetic Logic Unit | 🌟 | 🌟 | | Day 25: Sea Cucumber | 🌟 | 🌟 | -[aoc]: https://adventofcode.com - [github]: https://github.com/tchojnacki - [template]: https://github.com/kotlin-hands-on/advent-of-code-kotlin-template diff --git a/aoc-2022-dotnet/README.md b/aoc-2022-dotnet/README.md new file mode 100644 index 0000000..7a9a03c --- /dev/null +++ b/aoc-2022-dotnet/README.md @@ -0,0 +1,32 @@ +# Advent of Code 2022 in .NET + + + +## Progress +| Day | Part 1 | Part 2 | +| -------------------------- | :----: | :----: | +| Day 1: Calorie Counting | 🌟 | 🌟 | +| Day 2: Rock Paper Scissors | 🌟 | 🌟 | +| Day 3: ??? | | | +| Day 4: ??? | | | +| Day 5: ??? | | | +| Day 6: ??? | | | +| Day 7: ??? | | | +| Day 8: ??? | | | +| Day 9: ??? | | | +| Day 10: ??? | | | +| Day 11: ??? | | | +| Day 12: ??? | | | +| Day 13: ??? | | | +| Day 14: ??? | | | +| Day 15: ??? | | | +| Day 16: ??? | | | +| Day 17: ??? | | | +| Day 18: ??? | | | +| Day 19: ??? | | | +| Day 20: ??? | | | +| Day 21: ??? | | | +| Day 22: ??? | | | +| Day 23: ??? | | | +| Day 24: ??? | | | +| Day 25: ??? | | | diff --git a/aoc-2022-dotnet/aoc-2022-dotnet.sln b/aoc-2022-dotnet/aoc-2022-dotnet.sln index 87e308c..22b3799 100644 --- a/aoc-2022-dotnet/aoc-2022-dotnet.sln +++ b/aoc-2022-dotnet/aoc-2022-dotnet.sln @@ -8,9 +8,11 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{45FD9816-5DE7-4422-A8D5-C017F4E5BD2C}" ProjectSection(SolutionItems) = preProject ..\.gitignore = ..\.gitignore + ..\README.md = ..\README.md + README.md = README.md EndProjectSection EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Day02", "Day02\Day02.fsproj", "{A5148468-D518-4678-B32C-D3C59B6290AB}" +Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Day02", "Day02\Day02.fsproj", "{A5148468-D518-4678-B32C-D3C59B6290AB}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution |