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));
|
1163 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
Check to see if a Sudoku Puzzle is Solved
278 Solvers
Determine Whether an array is empty
646 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!