LeetCode Exercises for Python Linked List
Here are some LeetCode practice problems I believe will help you with interviews as well.
Merge two sorted linked list
You are given two linked list, list1 = [1,2,6], list2 = [5,1,3]
o/p : [1,1,2,3,5,6]
class ListNode(object):
def __init__(s...