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))
|
657 Solvers
626 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
1882 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!