Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A = [ 12 4 7
5 1 4];
B_correct = [ 7 4 12
4 1 5 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
1
|
2 | Pass |
%%
A = [ 12 7
5 4];
B_correct = [ 7 12
4 5 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
1
|
3 | Pass |
%%
A = [ 1 5 0 2 3 ];
B_correct = [ 3 5 0 2 1 ];
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
1
|
4 | Pass |
%%
A = 1;
B_correct = 1;
assert(isequal(swap_ends(A),B_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
1
|
Make a random, non-repeating vector.
1115 Solvers
Given a window, how many subsets of a vector sum positive
673 Solvers
251 Solvers
Matlab Basics - Create a row vector
205 Solvers
Van Eck's Sequence's nth member
265 Solvers