Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 522 Bytes

File metadata and controls

16 lines (12 loc) · 522 Bytes

-go back

Code challenge: 08

Challenge Title

zip lists

Whiteboard Process

alt text

Approach & Efficiency

not using built-in functions and methods to create a new linked list merged from two already created linked lists from the previous code challenges.

Solution

after defining the structure of the node and the linked list 1 methods were implemented:

  • zip_lists: merge the two lists into one linked list and return the resulting linked list using the str method