-
Notifications
You must be signed in to change notification settings - Fork 86
Added C# solutions for Chapter 3: Linked Lists. #80
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
Added C# solutions for Chapter 3: Linked Lists. #80
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.
Hi @mmhossain, thanks for creating a PR to the Coding Interview Patterns solution repository! 😀 We'd like each language to match the structure of the official Python solutions folder as close as possible. I've left some comments on this PR for how it can better align with the Python solutions.
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 have remove the types ListNode, DoublyLinkedListNode, MultiLevelListNode from the repo and added necessary type definitions to each solution. Please review it one more time.
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.
see comment
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.
Looks good to me! Thanks @mmhossain!
This PR aims to add C# solutions for all the problems from Chapter 3: Linked Lists (including the problems from bonus pdf material with the book).