Daily challenge for 2025-01-22
22. Merge Sorted Lists
Write a function solve that merges two sorted lists into one sorted list. The function should return the merged list.
Example:Input: [1,3,5],[2,4,6]Output: [1,2,3,4,5,6]
Run this challenge interactively in Python or JavaScript when the app loads.