This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [5 2 0 1 0];
y_correct = [3 4];
assert(isequal(find_2_missing(x),y_correct))
ans =
3 4
|
2 | Pass |
x = [6 1 0 2 3 0];
y_correct = [4 5];
assert(isequal(find_2_missing(x),y_correct))
ans =
4 5
|
3 | Pass |
x = [4 2 5 3 0 0 6];
y_correct = [1 7];
assert(isequal(find_2_missing(x),y_correct))
ans =
1 7
|
3075 Solvers
232 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
277 Solvers
214 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!