Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
A = [1 2 3 4 5 6 7 8];
B = [4 5 6 6 7 0 12 34];
y_correct = [4 5 6 7];
assert(isequal(common(A,B),y_correct))
|
2 | Fail |
A = [11 34 23 09 1];
B = [12 33 21 8 1];
y_correct = 1;
assert(isequal(common(A,B),y_correct))
|
3238 Solvers
Number of 1s in a binary string
2821 Solvers
Back to Basics - Find no. of elements in a matrix?
216 Solvers
2620 Solvers
Sum the squares of numbers from 1 to n
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!