Daily challenge for 2025-04-22
112. Find Disappeared Numbers in an Array
Write a function solve that finds all numbers in the range [1, n] that do not appear in an array of length n.
Example:Input: [4,3,2,7,8,2,3,1]Output: [5,6]
Run this challenge interactively in Python or JavaScript when the app loads.