leetle

Daily challenge for 2025-06-09

160. Find the Intersection Point

Write a function solve that takes two lists and returns a list of elements that appear in both lists, in the order they appear in the first list. Each element should appear only once in the result.

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

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