Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = (1:5)';
y_correct = [1 5 4 3 2;2 1 5 4 3;3 2 1 5 4;4 3 2 1 5;5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
2 | Fail |
x = (1:3)';
y_correct = [1 3 2;2 1 3;3 2 1];
assert(isequal(shifted(x),y_correct))
|
3 | Fail |
x = (1:4)';
y_correct = [1 4 3 2;2 1 4 3;3 2 1 4;4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
4 | Fail |
x = (1:7)';
y_correct = [1 7 6 5 4 3 2;2 1 7 6 5 4 3;3 2 1 7 6 5 4;...
4 3 2 1 7 6 5;5 4 3 2 1 7 6; 6 5 4 3 2 1 7; 7 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
5 | Fail |
x = (1:6)';
y_correct = [1 6 5 4 3 2;2 1 6 5 4 3;3 2 1 6 5 4;...
4 3 2 1 6 5;5 4 3 2 1 6; 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
15297 Solvers
348 Solvers
Split a string into chunks of specified length
475 Solvers
376 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!