# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 16
# self = https://watcher.sour.is/conv/6oq4ywq
Day 2, Part 1 and Day 2, Part 2 of #AdvenOfCode all done and dusted 😅
Day 2, Part 1 and Day 2, Part 2 of #AdvenOfCode all done and dusted 😅
Day 2, Part 1 and Day 2, Part 2 of #AdvenOfCode all done and dusted 😅
My code is here. https://git.sour.is/xuu/advent-of-code-2023
My code is here. https://git.sour.is/xuu/advent-of-code-2023
@xuu Interesting 🤔 I mean I only wrote ~3x more code, not too bad considering:


$ wc -l day2*.go
  270 day2.go
   69 day2_test.go
  339 total

@xuu Interesting 🤔 I mean I only wrote ~3x more code, not too bad considering:


$ wc -l day2*.go
  270 day2.go
   69 day2_test.go
  339 total

@xuu Interesting 🤔 I mean I only wrote ~3x more code, not too bad considering:


$ wc -l day2*.go
  270 day2.go
   69 day2_test.go
  339 total

@xuu Ah, you went with the “scanning” approach as well. I did that, too.

It’s quite surprising to see (imho) how many people on reddit started substituting strings (one becomes 1 etc.). That makes the puzzle *much* harder by introducing nasty corner cases.

(Maybe I was just lucky this time to pick the correct approach right from the start. 🤣 Or maybe it’s a bit of experience from doing past AoC events …)
@xuu Ah, you went with the “scanning” approach as well. I did that, too.

It’s quite surprising to see (imho) how many people on reddit started substituting strings (one becomes 1 etc.). That makes the puzzle *much* harder by introducing nasty corner cases.

(Maybe I was just lucky this time to pick the correct approach right from the start. 🤣 Or maybe it’s a bit of experience from doing past AoC events …)
@xuu Ah, you went with the “scanning” approach as well. I did that, too.

It’s quite surprising to see (imho) how many people on reddit started substituting strings (one becomes 1 etc.). That makes the puzzle *much* harder by introducing nasty corner cases.

(Maybe I was just lucky this time to pick the correct approach right from the start. 🤣 Or maybe it’s a bit of experience from doing past AoC events …)
@movq I'm pretty sure it's experience from doing past AoC puzzles 😅
@movq I'm pretty sure it's experience from doing past AoC puzzles 😅
@movq I'm pretty sure it's experience from doing past AoC puzzles 😅
I could have made my search smarter using a prefix search rather than scanning the full buffer for each iteration.
I could have made my search smarter using a prefix search rather than scanning the full buffer for each iteration.