diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-15 22:52:13 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-15 22:52:13 +0100 |
commit | 2f2684bb82970505414bc193ec4664d6dd6a3c64 (patch) | |
tree | cb8f520bb5103853b0b27fe4def075a177870b11 /aoc-2022-dotnet | |
parent | 7ce938ea4d40e9a631bfe11795f3d9f74855ceb5 (diff) | |
download | gleam_aoc2020-2f2684bb82970505414bc193ec4664d6dd6a3c64.tar.gz gleam_aoc2020-2f2684bb82970505414bc193ec4664d6dd6a3c64.zip |
Reformat README
Diffstat (limited to 'aoc-2022-dotnet')
-rw-r--r-- | aoc-2022-dotnet/README.md | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/aoc-2022-dotnet/README.md b/aoc-2022-dotnet/README.md index 84a39ce..0e2bd98 100644 --- a/aoc-2022-dotnet/README.md +++ b/aoc-2022-dotnet/README.md @@ -1,32 +1,31 @@ -# Advent of Code 2022 in .NET - +# Advent of Code 2022 in F# +  -## Progress -| Day | Part 1 | Part 2 | -| ------------------------------- | :----: | :----: | -| Day 1: Calorie Counting | 🌟 | 🌟 | -| Day 2: Rock Paper Scissors | 🌟 | 🌟 | -| Day 3: Rucksack Reorganization | 🌟 | 🌟 | -| Day 4: Camp Cleanup | 🌟 | 🌟 | -| Day 5: Supply Stacks | 🌟 | 🌟 | -| Day 6: Tuning Trouble | 🌟 | 🌟 | -| Day 7: No Space Left On Device | 🌟 | 🌟 | -| Day 8: Treetop Tree House | 🌟 | 🌟 | -| Day 9: Rope Bridge | 🌟 | 🌟 | -| Day 10: Cathode-Ray Tube | 🌟 | 🌟 | -| Day 11: Monkey in the Middle | 🌟 | 🌟 | -| Day 12: Hill Climbing Algorithm | 🌟 | 🌟 | -| Day 13: Distress Signal | 🌟 | 🌟 | -| Day 14: Regolith Reservoir | 🌟 | 🌟 | -| Day 15: ??? | | | -| Day 16: ??? | | | -| Day 17: ??? | | | -| Day 18: ??? | | | -| Day 19: ??? | | | -| Day 20: ??? | | | -| Day 21: ??? | | | -| Day 22: ??? | | | -| Day 23: ??? | | | -| Day 24: ??? | | | -| Day 25: ??? | | | +| Day | Problem Name | Part 1 | Part 2 | Practiced Concepts | +| :----: | --------------------------------------------------------------- | :----: | :----: | ---------------------------------------------------- | +| **01** | [Calorie Counting](https://adventofcode.com/2022/day/1) | :star: | :star: | `Seq`, `\|>` and `>>`, FSharpPlus | +| **02** | [Rock Paper Scissors](https://adventofcode.com/2022/day/2) | :star: | :star: | ADTs, type members, patterns | +| **03** | [Rucksack Reorganization](https://adventofcode.com/2022/day/3) | :star: | :star: | ASCII code, `Set` | +| **04** | [Camp Cleanup](https://adventofcode.com/2022/day/4) | :star: | :star: | ranges, FParsec | +| **05** | [Supply Stacks](https://adventofcode.com/2022/day/5) | :star: | :star: | functional stacks, `List.transpose`, `Seq.fold` | +| **06** | [Tuning Trouble](https://adventofcode.com/2022/day/6) | :star: | :star: | `Seq.windowed`, `Set` | +| **07** | [No Space Left On Device](https://adventofcode.com/2022/day/7) | :star: | :star: | patterns, ADTs, FParsec | +| **08** | [Treetop Tree House](https://adventofcode.com/2022/day/8) | :star: | :star: | `Array2D`, slices | +| **09** | [Rope Bridge](https://adventofcode.com/2022/day/9) | :star: | :star: | vectors, Chebyshev distance, `Seq.scan` | +| **10** | [Cathode-Ray Tube](https://adventofcode.com/2022/day/10) | :star: | :star: | `Map`, `Seq.fold` | +| **11** | [Monkey in the Middle](https://adventofcode.com/2022/day/11) | :star: | :star: | records, type abbrevs, `List.choose`, tail recursion | +| **12** | [Hill Climbing Algorithm](https://adventofcode.com/2022/day/12) | :star: | :star: | functional graphs, functional BFS, `Array2D` | +| **13** | [Distress Signal](https://adventofcode.com/2022/day/13) | :star: | :star: | `IComparable`, ADTs, patterns, FParsec | +| **14** | [Regolith Reservoir](https://adventofcode.com/2022/day/14) | :star: | :star: | `Seq.unfold`, `Seq.pairwise`, functional DFS | +| **15** | [Beacon Exclusion Zone](https://adventofcode.com/2022/day/15) | | | | +| **16** | ??? | | | | +| **17** | ??? | | | | +| **18** | ??? | | | | +| **19** | ??? | | | | +| **20** | ??? | | | | +| **21** | ??? | | | | +| **22** | ??? | | | | +| **23** | ??? | | | | +| **24** | ??? | | | | +| **25** | ??? | | | | |