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 '
|
Sort a list of complex numbers based on far they are from the origin.
4325 Solvers
228 Solvers
386 Solvers
404 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!