Skip to content

Glasgow | 26- SDC-Mar | Taras Mykytiuk | Sprint 2 | Implement linked list#182

Open
TarasMykytiuk wants to merge 1 commit into
CodeYourFuture:mainfrom
TarasMykytiuk:implement_linked_list
Open

Glasgow | 26- SDC-Mar | Taras Mykytiuk | Sprint 2 | Implement linked list#182
TarasMykytiuk wants to merge 1 commit into
CodeYourFuture:mainfrom
TarasMykytiuk:implement_linked_list

Conversation

@TarasMykytiuk

@TarasMykytiuk TarasMykytiuk commented Jun 27, 2026

Copy link
Copy Markdown

Learners, PR Template

Self checklist

  • I have titled my PR with Region | Cohort | FirstName LastName | Sprint | Assignment Title
  • My changes meet the requirements of the task
  • I have tested my changes
  • My changes follow the style guide

Changelist

Linked list exercise completed.

@TarasMykytiuk TarasMykytiuk added 📅 Sprint 2 Assigned during Sprint 2 of this module Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. Module-Complexity The name of the module. labels Jun 27, 2026

@cjyuan cjyuan left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code looks good.

Comment on lines +1 to +5
class Node:
def __init__(self, data):
self.data = data
self.next = None
self.previous = None

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May I suggest exploring the use of __slots__ to reduce memory usage?

@cjyuan cjyuan added Complete Volunteer to add when work is complete and all review comments have been addressed. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Jun 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Complete Volunteer to add when work is complete and all review comments have been addressed. Module-Complexity The name of the module. 📅 Sprint 2 Assigned during Sprint 2 of this module

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants