merge two sorted lists in pytho code example
Example 1: merge two lists
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)
Example 2: merge two sorted list in python
# l1 and l2 are lists
sorted(l1+l2)
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)
# l1 and l2 are lists
sorted(l1+l2)