codesankalp / dsalgo

MIT License
8 stars 24 forks source link

Add function "merge()" in existing linked_list.py to perform merging of two given linked list. #35

Open Aryamanz29 opened 3 years ago

Aryamanz29 commented 3 years ago

Merge() two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. For example: Input: 1->2->4, 1->3->4 Output: 1->1->2->3->4->4

Also, create a separate test file linked_list_test.py in dsalgo/tests for this issue using python unittest (testing framework) Which contain tests for existing linked_list.py included merge().

Things need to be done for this issue:

hemabhagnani commented 3 years ago

I would like to work on this issue. Please assign it to me. Thank You

devkapilbansal commented 3 years ago

Sure @hemabhagnani assigning you Happy coding 🙂

Vishu7758 commented 3 years ago

Can I work on this issue?