Daily challenge for 2025-07-12
193. Find Minimum in Array
Write a function solve that takes a list of integers and returns the smallest number. You can assume the list is not empty.
Example:Input: [3, 1, 4, 1, 5]Output: 1
Run this challenge interactively in Python or JavaScript when the app loads.