Skip to content

Commit b46d548

Browse files
committed
12
1 parent 3417360 commit b46d548

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

2025/Day12/Solution.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ namespace AdventOfCode.Y2025.Day12;
88
class Solution : Solver {
99

1010
public object PartOne(string input) {
11-
// 🎄 🎄 🎄 This problem was a joke by Eric. The solution is input specific.
11+
// It's enough to check if the 3x3 area of the presents is less than
12+
// the area under 🎄 tree. No packing is required.
1213
return input.Split("\n\n").Last()
1314
.Split("\n")
1415
.Select(line => Regex.Matches(line, @"\d+").Select(m => int.Parse(m.Value)).ToArray())

0 commit comments

Comments
 (0)