Daily challenge for 2025-03-30
89. Sort a List
Write a function solve that sorts a list of numbers in ascending order.
Example:Input: [3, 1, 4, 2]Output: [1, 2, 3, 4]
Run this challenge interactively in Python or JavaScript when the app loads.