Skip to content

Commit e8a302c

Browse files
Update docs on Fri Dec 12 10:25:49 UTC 2025
1 parent c3a95c0 commit e8a302c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

2025/12/illustration.jpg

236 Bytes
Loading

2025/12/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ <h2 id="problem-name">Christmas Tree Farm</h2>
288288
class Solution : Solver {
289289

290290
public object PartOne(string input) {
291-
// 🎄 🎄 🎄 rotfl
291+
// 🎄 🎄 🎄 This problem was a joke by Eric. The solution is specific to the input.
292292

293293
var blocks = input.Split(&quot;\n\n&quot;);
294294

@@ -308,7 +308,7 @@ <h2 id="problem-name">Christmas Tree Farm</h2>
308308
foreach(var todo in todos) {
309309
var areaNeeded = Enumerable.Zip(todo.counts, areas).Sum(p =&gt; p.First * p.Second);
310310
if (areaNeeded &lt;= todo.w * todo.h) {
311-
res ++;
311+
res++;
312312
}
313313
}
314314
return res;

0 commit comments

Comments
 (0)