-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solve day 12 for 2024 #2014
base: main
Are you sure you want to change the base?
Solve day 12 for 2024 #2014
Conversation
Solve part 1 of the puzzle for day 12.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 5 out of 6 changed files in this pull request and generated no suggestions.
Files not reviewed (1)
- src/AdventOfCode.Resources/Input/Y2024/Day12/input.txt: Language not supported
Comments skipped due to low confidence (1)
src/AdventOfCode/Puzzles/Y2024/Day12.cs:67
- The null-forgiving operator '!' is unnecessary here and could lead to unintended behavior. It should be removed.
if (!region.Contains(new(point.X, point.Y + 1))!)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Device | URL |
---|---|
desktop | https://localhost:50001 |
Device | URL |
---|---|
mobile | https://localhost:50001 |
Not what you expected? Are your scores flaky? GitHub runners could be the cause.
Try running on Foo instead
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2014 +/- ##
=======================================
Coverage 60.39% 60.39%
=======================================
Files 138 138
Lines 3530 3530
Branches 454 470 +16
=======================================
Hits 2132 2132
Misses 1398 1398 ☔ View full report in Codecov by Sentry. |
Add skeleton for implementing part 2 for day 12 of 2024.
Solve the puzzle for Advent of Code 2024 day 12.