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 = 'a';
y = 'b';
y_correct = 'ab';
assert(isequal(your_fcn_name(x, y),y_correct))
ans =
ab
|
2 | Pass |
%%
x = 'a';
y = 'a';
y_correct = 'ab';
assert(~isequal(your_fcn_name(x, y),y_correct))
ans =
aa
|
Find common elements in matrix rows
1232 Solvers
485 Solvers
Switch matrix to a column vector
260 Solvers
2143 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!