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))
|
Swap the first and last columns
9888 Solvers
276 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1063 Solvers
Arrange Vector in descending order
1803 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers