Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
inStr = 'doug';
shift = 10;
outStr = 'nyeq';
assert(isequal(cypher(inStr, shift),outStr))
ans =
nyeq
|
2 | Pass |
%%
inStr = 'thequickbrownfox';
shift = 5;
outStr = 'ymjvznhpgwtbsktc';
assert(isequal(cypher(inStr, shift),outStr))
ans =
ymjvznhpgwtbsktc
|
3 | Pass |
%%
inStr = 'thecrowfliesatmidnight';
shift = 22;
outStr = 'pdaynksbheaowpiezjecdp';
assert(isequal(cypher(inStr, shift),outStr))
ans =
pdaynksbheaowpiezjecdp
|
Similar Triangles - find the height of the tree
156 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
191 Solvers
Sum the numbers on the main diagonal
375 Solvers
Number of Even Elements in Fibonacci Sequence
419 Solvers