$ random stuff
├── my bookshelf
├── resources
└── quotes
└── about me
Merge two sorted linked lists and return it as a new list.1. The new list should be made by splicing together the nodes of the first two lists.
It's an easy problem in Leetcode for practicing linked list. It's similar to the merge step of the Merge sort. ..Continue reading → programming leetcode code
Continue reading → programming leetcode code