-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
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
Fix bug for data_structures/linked_list/doubly_linked_list_two.py #12651
Fix bug for data_structures/linked_list/doubly_linked_list_two.py #12651
Conversation
@cclauss please review |
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.
Pull Request Overview
This pull request fixes a bug in the doubly linked list implementation where calling insert_at_position on an empty list caused an AttributeError. The key changes include updating the set_tail method to initialize the list when tail is absent, refining the insert_after_node type hints, and switching to set_tail in insert_at_position to handle empty lists correctly.
Comments suppressed due to low confidence (1)
data_structures/linked_list/doubly_linked_list_two.py:108
- The function signature now strictly requires a non-null node. Ensure that all calls to insert_after_node have been updated accordingly so that a None value is never passed in, as this could lead to runtime errors.
def insert_after_node(self, node: Node, node_to_insert: Node) -> None:
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.
Approved but please review Copilot’s review.
@cclauss Good review from Copilot - good description and 2 good comments |
Describe your change:
Related to #12647
Bug was when calling
insert_at_position
method on empty listChecklist: