Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
inStr = 'doug';
shift = 10;
outStr = 'nyeq';
assert(isequal(cypher(inStr, shift),outStr))
outStr =
'nye'
|
2 | Pass |
inStr = 'thequickbrownfox';
shift = 5;
outStr = 'ymjvznhpgwtbsktc';
assert(isequal(cypher(inStr, shift),outStr))
outStr =
'ymjvznhpgwtb'
outStr =
'ymjvznhpgwtbsktc'
|
3 | Pass |
inStr = 'thecrowfliesatmidnight';
shift = 22;
outStr = 'pdaynksbheaowpiezjecdp';
assert(isequal(cypher(inStr, shift),outStr))
outStr =
'p'
outStr =
'pd'
outStr =
'pda'
outStr =
'pdayn'
outStr =
'pdaynk'
outStr =
'pdaynks'
outStr =
'pdaynksb'
outStr =
'pdaynksbh'
outStr =
'pdaynksbhe'
outStr =
'pdaynksbhea'
outStr =
'pdaynksbheao'
outStr =
'pdaynksbheaowp'
outStr =
'pdaynksbheaowpi'
outStr =
'pdaynksbheaowpie'
outStr =
'pdaynksbheaowpiezj'
outStr =
'pdaynksbheaowpiezje'
outStr =
'pdaynksbheaowpiezjec'
outStr =
'pdaynksbheaowpiezjecd'
outStr =
'pdaynksbheaowpiezjecdp'
|
390 Solvers
216 Solvers
373 Solvers
615 Solvers
724 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!