Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
[q,r] = swapInputs(5,10);
assert(isequal(q,10));
assert(isequal(r,5));
|
2 | Pass |
%%
[q,r] = swapInputs(magic(3), 'hello, world');
assert(isequal(q,'hello, world'));
assert(isequal(r,magic(3)));
|
3 | Pass |
%%
[q,r] = swapInputs({}, NaN);
assert(isnan(q));
assert(iscell(r) && isempty(r));
|
Make one big string out of two smaller strings
1070 Solvers
Back to basics 4 - Search Path
280 Solvers
254 Solvers
385 Solvers
502 Solvers