aboutsummaryrefslogtreecommitdiff
path: root/content/blog/haskell
diff options
context:
space:
mode:
authorJulien Dessaux2023-12-14 23:27:19 +0100
committerJulien Dessaux2023-12-15 02:18:19 +0100
commitf53a9f4b851ecbf09bbde6519703dbf7d66cb767 (patch)
tree833fad7c834c6c98990dfd18e77c1cf044489cfa /content/blog/haskell
parentAdded finishing advent of code 2022 in haskell blog article (diff)
downloadwww-f53a9f4b851ecbf09bbde6519703dbf7d66cb767.tar.gz
www-f53a9f4b851ecbf09bbde6519703dbf7d66cb767.tar.bz2
www-f53a9f4b851ecbf09bbde6519703dbf7d66cb767.zip
Added memory difficulties with nixos blog article
Diffstat (limited to 'content/blog/haskell')
-rw-r--r--content/blog/haskell/finishing-advent-of-code-2022-in-haskell.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/blog/haskell/finishing-advent-of-code-2022-in-haskell.md b/content/blog/haskell/finishing-advent-of-code-2022-in-haskell.md
index c12c743..dbb01f4 100644
--- a/content/blog/haskell/finishing-advent-of-code-2022-in-haskell.md
+++ b/content/blog/haskell/finishing-advent-of-code-2022-in-haskell.md
@@ -8,7 +8,7 @@ tags:
## Introduction
-I wrote about doing the [advent of code 2022 in zig]({{< ref "advent-of-code-2022-in-zig.md" >}}), but I did not complete the year. I stopped on using zig on day 15 when I hit a bug when using hashmaps that I could not solve in time and continued in JavaScript until [day 2022](https://adventofcode.com/2022/day/22). On day 22 part 2, you need to fold a cube and move on it keeping track of your orientation... It was hard!
+I wrote about doing the [advent of code 2022 in zig]({{< ref "advent-of-code-2022-in-zig.md" >}}), but I did not complete the year. I stopped on using zig on day 15 when I hit a bug when using hashmaps that I could not solve in time and continued in JavaScript until [day 22](https://adventofcode.com/2022/day/22). On day 22 part 2, you need to fold a cube and move on it keeping track of your orientation... It was hard!
Last week I wanted to warm up for the current advent of code and therefore took it up again... it was (almost) easy with Haskell!