Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1234;
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(a,x),y_correct))
v =
1 2 3 4
y =
1
|
2 | Pass |
a=82356;
x = 5;
y_correct = 4;
assert(isequal(your_fcn_name(a,x),y_correct))
v =
8 2 3 5 6
y =
4
|
3 | Pass |
a=1231;
x = 1;
y_correct = [1,4];
assert(isequal(your_fcn_name(a,x),y_correct))
v =
1 2 3 1
y =
1 4
|
4 | Pass |
a=76454;
x = 4;
y_correct = [3,5];
assert(isequal(your_fcn_name(a,x),y_correct))
v =
7 6 4 5 4
y =
3 5
|
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Number of 1s in a binary string
2825 Solvers
Create an n-by-n null matrix and fill with ones certain positions
269 Solvers
Determine the length of a string of characters
172 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!