Day 11 Puzzle
Fix the function to correctly sort all items from the lists in ascending order.
def solve(): list1 = [1, 3, 5] list2 = [2, 4, 6] return list1 + list2
Run
π Your solution isβ¦ interesting.