leetle

Daily challenge for 2025-04-20

110. Intersection of Two Arrays

Write a function solve that returns the intersection of two arrays as a sorted list.

Example:
Input: [1,2,2,1], [2,2]
Output: [2]

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