Advent of Code 2025- Day 9
Movie Theater Part 1 was pretty straightforward. I extract the X and Y coordinates from each line and then using a self-join, I compare the areas of each possible rectangle. As with many other, similar, self-joins, I use the b.seq > a.seq filter to eliminate redundant, commutative calculations (i.e. rectangles of A & B corners are the same as rectangles of B & A corners.)
Advent of Code 2025- Day 9
Movie Theater Part 1 was pretty straightforward. I extract the X and Y coordinates from each line and then using a self-join, I compare the areas of each possible rectangle. As with many other, similar, self-joins, I use the b.seq > a.seq filter to eliminate redundant,…
02.01.2026 14:54
👍 0
🔁 0
💬 0
📌 0
One more year.
Thank you @oracleace
27.06.2025 04:19
👍 3
🔁 0
💬 0
📌 0
New Certification and FeedSpot Recognition
I successfully completed my Oracle AI Vector Search certification. I was also elated to hear FeedSpot has, again, selected my blog as one of the Top 100 Oracle Blogs on the web.
New Certification and FeedSpot Recognition
I successfully completed my Oracle AI Vector Search certification. I was also elated to hear FeedSpot has, again, selected my blog as one of the Top 100 Oracle Blogs on the web.
14.04.2025 03:45
👍 3
🔁 0
💬 0
📌 0
Advent of Code 2024 – Day 4
Ceres Search Day 4 took a different turn, we're still parsing through text to find special values, but now we need to parse horizontally, vertically, and diagonally through a grid of text looking for "XMAS", which could appear forwards or backwards (SAMX.) For this I built a two-dimensional map of the text. As I read each line, looking for horizontal instances of XMAS was trivial, I just used REGEXP_COUNT to look for XMAS and SMAX.
Advent of Code 2024 – Day 4
Ceres Search Day 4 took a different turn, we're still parsing through text to find special values, but now we need to parse horizontally, vertically, and diagonally through a grid of text looking for "XMAS", which could appear forwards or backwards (SAMX.) For this I…
25.01.2025 23:00
👍 0
🔁 0
💬 0
📌 0
Day 19 - Advent of Code 2024
I've completed "Linen Layout" - Day 19 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/19
I started off with the wrong approach but ended up going back to day 11 for similar solution. pl/sql block found 601 trillion combinations in under 2 seconds.
19.12.2024 16:33
👍 5
🔁 0
💬 0
📌 0
Day 10 - Advent of Code 2024
I just completed "Hoof It" - Day 10 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/10
10.12.2024 05:24
👍 3
🔁 0
💬 0
📌 0
Day 8 - Advent of Code 2024
I just completed "Resonant Collinearity" - Day 8 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/8
08.12.2024 14:38
👍 3
🔁 0
💬 0
📌 0
Day 6 - Advent of Code 2024
I completed "Guard Gallivant" - Day 6 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/6
This one I had a small error in my part 1 that still produced the correct answer! But in part 2 I wasted hours looking for the error in the new code that was correct the whole time.
07.12.2024 03:54
👍 2
🔁 0
💬 0
📌 0