Skip to content

Commit 71a6529

Browse files
Update docs on Fri Dec 26 05:01:04 UTC 2025
1 parent 4efaaf4 commit 71a6529

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

2025/12/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,14 @@ <h2 id="problem-name">Christmas Tree Farm</h2>
288288

289289
public object PartOne(string input) {
290290
// It&#039;s enough to check if the 3x3 area of the presents is less than
291-
// the area under 🎄 tree. No packing is required.
291+
// the area under 🎄 tree. No packing required.
292292
return input.Split(&quot;\n\n&quot;).Last()
293293
.Split(&quot;\n&quot;)
294294
.Select(line =&gt; Regex.Matches(line, @&quot;\d+&quot;).Select(m =&gt; int.Parse(m.Value)).ToArray())
295295
.Count(nums =&gt; nums[0] * nums[1] &gt;= 9 * nums[2..].Sum());
296296
}
297-
}</code></pre></div>
297+
}
298+
</code></pre></div>
298299
<div id="code-location"> <p>Please ☆ my <a href="https://github.com/encse/adventofcode/">repo</a> if you like it!</p></div>
299300
</div>
300301

0 commit comments

Comments
 (0)