Skip to content

Commit c3a95c0

Browse files
Update docs on Fri Dec 12 09:40:47 UTC 2025
1 parent 0ea1ecf commit c3a95c0

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

2025/12/index.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,7 @@ <h2 id="problem-name">Christmas Tree Farm</h2>
301301
var todos = (
302302
from line in blocks.Last().Split(&quot;\n&quot;)
303303
let nums = Regex.Matches(line, @&quot;\d+&quot;).Select(m =&gt; int.Parse(m.Value)).ToArray()
304-
let w = nums[0]
305-
let h = nums[1]
306-
let counts = nums[2..]
307-
select new Todo(w, h, counts)
304+
select new Todo(nums[0], nums[1], nums[2..])
308305
).ToArray();
309306

310307
var res = 0;

0 commit comments

Comments
 (0)