Daily challenge for 2025-06-05
156. Find the Second Largest Number
Write a function solve that returns the second largest number in a list of integers. If the list has fewer than two unique numbers, return None.
Example:Input: [3, 1, 4, 1, 5, 9]Output: 5
Run this challenge interactively in Python or JavaScript when the app loads.