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))
td =
3×6 char array
' 7 '
' 5 9'
' 1 '
|
2 | Pass |
t = [27 8 5 46];
north = 4;
td = [' 46 '
' 5 27'
' 8 '];
assert(isequal(rotate_tile(t, north),td))
td =
3×6 char array
' 46 '
' 5 27'
' 8 '
|
3 | Pass |
t = [9 57 75 9];
north = 2;
td = [' 57 '
' 9 75'
' 9 '];
assert(isequal(rotate_tile(t, north),td))
td =
3×6 char array
' 57 '
' 9 75'
' 9 '
|
732 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Who knows the last digit of pi?
557 Solvers
309 Solvers
525 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!