We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think your Day 7 implementation fails to calculate the solution to this input
a (1) -> b, c b (2) -> d1, e1 c (10) d1 (1) -> d e1 (1) -> e e (3) d (2)
which I would expect to be 2 because the tree can be fixed by changing node d1 to 2
2
d1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think your Day 7 implementation fails to calculate the solution to this input
which I would expect to be
2
because the tree can be fixed by changing noded1
to2
The text was updated successfully, but these errors were encountered: