leetle

Daily challenge for 2025-03-24

83. Merge Two Lists

Write a function solve that merges two lists into a single list.

Example:
Input: [1, 2] and [3, 4]
Output: [1, 2, 3, 4]

Run this challenge interactively in Python or JavaScript when the app loads.