Skip to content

Commit 2223b5b

Browse files
authored
Update README.md
1 parent ad391a9 commit 2223b5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These are my solutions for [Advent Of Code 2023](https://adventofcode.com/2023).
1414
| [7](7/main.erl) | [Erlang](https://www.erlang.org/) | ⭐⭐ | [Replit](https://replit.com/@janschaefer0/AdventOfCode202307) | [ChatGPT](https://chat.openai.com/share/e4886a2a-52fe-4494-b3f5-705da823f46a) | Erlang was the hardest language for me so far. I struggled with the syntax, with the error messages, even with just printing strings to the console. I even had to read the documentation, because ChatGPT could not help me enough. Erlang is very different to common languages, just to name a few things: Variables have to be written with an upper case letter, counting starts at 1 and not at 0, you end functions with a dot. It feels like the language was developed by a person that wanted to do everything different. No wonder Elixir exists :-). |
1515
| [8](8/main.fs) | [F#](https://fsharp.org/) | ⭐⭐ | [Replit](https://replit.com/@janschaefer0/AdventOfCode202308) | [ChatGPT](https://chat.openai.com/share/5f3b2a75-a1fe-4415-9d52-45ce87efdf75) | F# itself is a quite nice functional language. Sometimes I struggled a bit with the syntax, but overall the language was not a big problem. What was more annoying was the second part of the puzzle itself, which was quite difficult to solve if you did not come up with the right idea. This puzzle took me way too much time to solve. |
1616
| [9](9/main.go) | [Go](https://go.dev/) | ⭐⭐ | [Replit](https://replit.com/@janschaefer0/AdventOfCode202309) | [ChatGPT](https://chat.openai.com/share/17a61954-9b3d-4d03-9cec-da0a7e805867) | Wow, Go has no map function? Seriously? Even ChatGPT was surprised :-). After all the functional languages before, I now needed to program imperatively again :-(. And the puzzle was suprisingly simple compared to the previous one, so that I was much faster done than in any other puzzle before. I was even sligthly disappointed that there was not big surprise in part 2 of the puzzle ;-) |
17-
| [10](10/Main.hs) | [Haskell](https://www.haskell.org/) | ⭐⭐ | [Replit](https://replit.com/@janschaefer0/AdventOfCode202310)| [ChatGPT](https://chat.openai.com/share/2e0d4a34-f98e-4c6d-b470-f0026426d1a0) | Haskell, the mother of all functional languages, is certainly one of the most interesting languages that exit, but also quite hard to learn. As I was already familiar with Haskell, it was not so difficult for me to use the language. I struggled more with the puzzle itself. Especially the second part was very hard if you don´t come up with the right idead. It took me way too long to solve and I needed help from ChatGPT to get to the idea. The resulting solution in Haskell is also very slow and takes over 10 minutes to finish. I am not sure why it is so slow, I assume the free Replit that I used, just has not enough RAM for Haskell. There is certainly also a more elegant solution than mine. |
17+
| [10](10/Main.hs) | [Haskell](https://www.haskell.org/) | ⭐⭐ | [Replit](https://replit.com/@janschaefer0/AdventOfCode202310)| [ChatGPT](https://chat.openai.com/share/2e0d4a34-f98e-4c6d-b470-f0026426d1a0) | Haskell, the mother of all functional languages, is certainly one of the most interesting languages that exit, but also quite hard to learn. As I was already familiar with Haskell, it was not so difficult for me to use the language. I struggled more with the puzzle itself. Especially the second part was very hard if you don´t come up with the right idea. It took me way too long to solve and I needed help from ChatGPT to get to the idea. The resulting solution in Haskell is also very slow and takes over 10 minutes to finish. I am not sure why it is so slow, I assume the free Replit that I used, just has not enough RAM for Haskell. There is certainly also a more elegant solution than mine. |
1818
| 11 | Java | | | | |
1919
| 12 | JavaScript | | | | |
2020
| 13 | Kotlin | | | | |

0 commit comments

Comments
 (0)