This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
|
500 Solvers
Create a square matrix of multiples
330 Solvers
Implement simple rotation cypher
806 Solvers
160 Solvers
49 Solvers