Problem 43558. Finding two missing number in 1 to n array

You are given an array of numbers from 1 to n with two missing numbers.

Return the two missing numbers.

Input: x=[5 2 0 1 0]; %n=5

Output: y=[3 4]; % [4 3] is not accepted

Have fun.

Solution Stats

64.42% Correct | 35.58% Incorrect
Last Solution submitted on Feb 20, 2024

Solution Comments

Show comments

Problem Recent Solvers63

Suggested Problems

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!