Sobes.tech
Intern

There are two sorted lists (arrays). # You need to write a function that creates a new sorted list by merging. # 1st list: 1, 2, 2, 5, 7, 14 # 2nd list: 4, 6, 6, 7, 9, 14, 15 # answer: 1, 2, 2, 4, 5, 6, 6, 7, 9, 14, 15