This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
s1 = 'My name is Sourav Mondal';
y_correct = 'MUYRNAAVMMEOINSDSAOL';
assert(isequal(transposition(s1),y_correct))
|
2 | Pass |
%%
s1 = 'i am a common cipher';
y_correct = 'IOANMCAICPOHMEMR';
assert(isequal(transposition(s1),y_correct))
|
3 | Pass |
%%
s1 = 'BATMAN rules GOTHAM';
y_correct = 'BEASTGMOATNHRAUML';
assert(isequal(transposition(s1),y_correct))
|
1327 Solvers
1309 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
405 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!