Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
t = [1 5 7 9];
north = 3;
td = [' 7 '
' 5 9'
' 1 '];
assert(isequal(rotate_tile(t, north),td))
|
2 | Pass |
%%
t = [27 8 5 46];
north = 4;
td = [' 46 '
' 5 27'
' 8 '];
assert(isequal(rotate_tile(t, north),td))
|
3 | Pass |
%%
t = [9 57 75 9];
north = 2;
td = [' 57 '
' 9 75'
' 9 '];
assert(isequal(rotate_tile(t, north),td))
|
Who knows the last digit of pi?
488 Solvers
Find a subset that divides the vector into equal halves
289 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
136 Solvers
316 Solvers