Merged two sorted lists using Python
list1 = [3, 4, 6, 8, 9] list2 = [2, 5, 6, 12, 15]
flist = list1 + list2 flist.sort() print(flist)
merge two sorted list using python
Merged two sorted lists using Python
list1 = [3, 4, 6, 8, 9] list2 = [2, 5, 6, 12, 15]
flist = list1 + list2 flist.sort() print(flist)
Log in or sign up for Devpost to join the conversation.