Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assert(isempty(regexp(evalc('type rot_hardway'),'(eval|fliplr|flipud|flipdim|rot90|)')))
|
2 | Pass |
x = [1 2 3;4 5 6;7 8 9];
y_correct = [3 6 9;2 5 8;1 4 7];
assert(isequal(rot_hardway(x),y_correct))
y =
3 6 9
2 5 8
1 4 7
|
3 | Pass |
x = [sqrt(-1) 2 3;4 5 6;7 8 9];
y_correct = [3 6 9;2 5 8;sqrt(-1) 4 7];
assert(isequal(rot_hardway(x),y_correct))
|
4 | Fail |
x = magic(9);
y_correct = rot90(magic(9));
assert(isequal(rot_hardway(x),y_correct))
|
1159 Solvers
579 Solvers
309 Solvers
Set the array elements whose value is 13 to 0
939 Solvers
1222 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!