feature/dynamic-lists #6

Merged
Aaron merged 4 commits from feature/dynamic-lists into develop 2025-03-22 19:24:54 +00:00
Member

--- Testing Managed Linked List ---Managed Linked List Size: 3
Element 0: 1
Element 1: 2
Element 2: 3
--- Testing String Linked List ---String Linked List Size: 2
String 0: HelloString 1: World--- Testing Dynamic List ---Dynamic List Size: 5
Element 0: 10
Element 1: 20
Element 2: 30
Element 3: 40
Element 4: 50
After insertion at index 2, size: 6
Element 0: 10
Element 1: 20
Element 2: 999
Element 3: 30
Element 4: 30
Element 5: 30
Deleted element at index 3.After deletion, size: 5
Element 0: 10
Element 1: 20
Element 2: 999
Element 3: 30
Element 4: 30

--- Testing Managed Linked List ---Managed Linked List Size: 3 Element 0: 1 Element 1: 2 Element 2: 3 --- Testing String Linked List ---String Linked List Size: 2 String 0: HelloString 1: World--- Testing Dynamic List ---Dynamic List Size: 5 Element 0: 10 Element 1: 20 Element 2: 30 Element 3: 40 Element 4: 50 After insertion at index 2, size: 6 Element 0: 10 Element 1: 20 Element 2: 999 Element 3: 30 Element 4: 30 Element 5: 30 Deleted element at index 3.After deletion, size: 5 Element 0: 10 Element 1: 20 Element 2: 999 Element 3: 30 Element 4: 30
Aaron added 4 commits 2025-03-22 19:12:46 +00:00
Aaron requested review from t3hn3rd 2025-03-22 19:12:48 +00:00
t3hn3rd approved these changes 2025-03-22 19:24:14 +00:00
t3hn3rd left a comment
Owner

Looks good - like the comments & the test cases, Approved,

Looks good - like the comments & the test cases, Approved,
Aaron merged commit 28846af43c into develop 2025-03-22 19:24:54 +00:00
Aaron deleted branch feature/dynamic-lists 2025-03-22 19:24:55 +00:00
Sign in to join this conversation.
No Reviewers
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Spexeah/Asuro#6
No description provided.