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 |
A = [1 2 3 4 5];
B = [100 200 300 4 500];
y_correct = [1 2 3 5];
assert(isequal(sort(find_A_not_in_B(A,B)),sort(y_correct)))
|
2 | Pass |
A = [12 1 2 -10 5];
B = [12 5];
y_correct = [-10 1 2];
assert(isequal(sort(find_A_not_in_B(A,B)),sort(y_correct)))
|
3 | Pass |
A = [-5 -2];
B = [0 0 0 0 0 1 0];
y_correct = [-5 -2];
assert(isequal(sort(find_A_not_in_B(A,B)),sort(y_correct)))
|
Return the largest number that is adjacent to a zero
3749 Solvers
Volume of a sphere given its surface area
117 Solvers
484 Solvers
90 Solvers
87 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!