Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = sort(rand(1,10^5));
y_correct = 1;
assert(isequal(sortok(x),y_correct))
|
2 | Pass |
%%
x = [1 5 4 3 8 7 3];
y_correct = 0;
assert(isequal(sortok(x),y_correct))
|
5695 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
First non-zero element in each column
464 Solvers
299 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers