-
Notifications
You must be signed in to change notification settings - Fork 25
Chigazo Lesson 12 Even vs Odd #415
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
Conversation
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.
One day, I'm going to convince you to fix your PR names so that you can stop losing points.
|
||
while (head != null | ||
&& head.next != null) { // Goes through the Linked List until theres no more pairs | ||
int evenValue = |
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.
I'm surprised the linter didn't complain. The variable assignment should be on a single line.
No description provided.