leetle

Daily challenge for 2025-03-27

86. Find the Intersection of Two Lists

Write a function solve that finds the intersection of two lists (elements that appear in both lists), and returns a sorted list of these elements.

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

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