Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
inStr = 'doug';
shift = 10;
outStr = 'nyeq';
assert(isequal(cypher(inStr, shift),outStr))
s =
110 121 127 113
s =
110 121 101 113
ans =
'nyeq'
|
2 | Pass |
inStr = 'thequickbrownfox';
shift = 5;
outStr = 'ymjvznhpgwtbsktc';
assert(isequal(cypher(inStr, shift),outStr))
s =
121 109 106 118 122 110 104 112 103 119 116 124 115 107 116 125
s =
121 109 106 118 122 110 104 112 103 119 116 98 115 107 116 99
ans =
'ymjvznhpgwtbsktc'
|
3 | Pass |
inStr = 'thecrowfliesatmidnight';
shift = 22;
outStr = 'pdaynksbheaowpiezjecdp';
assert(isequal(cypher(inStr, shift),outStr))
s =
138 126 123 121 136 133 141 124 130 127 123 137 119 138 131 127 122 132 127 125 126 138
s =
112 100 97 121 110 107 115 98 104 101 97 111 119 112 105 101 122 106 101 99 100 112
ans =
'pdaynksbheaowpiezjecdp'
|
Given two strings, find the maximum overlap
461 Solvers
251 Solvers
Determine Whether an array is empty
646 Solvers
Output any real number that is neither positive nor negative
316 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!