Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
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))
y =
4 5 6 7
|
2 | Pass |
%%
A = [11 34 23 09 1];
B = [12 33 21 8 1];
y_correct = 1;
assert(isequal(common(A,B),y_correct))
y =
1
|
Return the 3n+1 sequence for n
6169 Solvers
Back to basics 12 - Input Arguments
525 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
359 Solvers
405 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!