Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
pos = 1;
y_correct = 1;
assert(isequal(wrapAround(x,pos),y_correct))
|
2 | Pass |
x = [1 2 3 4 5];
pos = 99;
y_correct = 4;
assert(isequal(wrapAround(x,pos),y_correct))
|
3 | Pass |
x = 7:101;
pos = 909;
y_correct = 60;
assert(isequal(wrapAround(x,pos),y_correct))
|
4 | Pass |
x = 5:5:100;
pos = 101;
y_correct = 5;
assert(isequal(wrapAround(x,pos),y_correct))
|
5 | Pass |
x = -17:3:99;
pos = 1001;
y_correct = 58;
assert(isequal(wrapAround(x,pos),y_correct))
|
6 | Pass |
x = 1:3:777;
pos = 789;
y_correct = 34;
assert(isequal(wrapAround(x,pos),y_correct))
|
Return a list sorted by number of occurrences
1504 Solvers
Matrix indexing with two vectors of indices
485 Solvers
Get the length of a given vector
3566 Solvers
856 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!