Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
inStr = 'doug';
shift = 10;
outStr = 'nyeq';
assert(isequal(cypher(inStr, shift),outStr))
Lin =
4
outStr =
'n'
outStr =
'ny'
outStr =
'nye'
outStr =
'nyeq'
|
2 | Pass |
inStr = 'thequickbrownfox';
shift = 5;
outStr = 'ymjvznhpgwtbsktc';
assert(isequal(cypher(inStr, shift),outStr))
Lin =
16
outStr =
'y'
outStr =
'ym'
outStr =
'ymj'
outStr =
'ymjv'
outStr =
'ymjvz'
outStr =
'ymjvzn'
outStr =
'ymjvznh'
outStr =
'ymjvznhp'
outStr =
'ymjvznhpg'
outStr =
'ymjvznhpgw'
outStr =
'ymjvznhpgwt'
outStr =
'ymjvznhpgwtb'
outStr =
'ymjvznhpgwtbs'
outStr =
'ymjvznhpgwtbsk'
outStr =
'ymjvznhpgwtbskt'
outStr =
'ymjvznhpgwtbsktc'
|
3 | Pass |
inStr = 'thecrowfliesatmidnight';
shift = 22;
outStr = 'pdaynksbheaowpiezjecdp';
assert(isequal(cypher(inStr, shift),outStr))
Lin =
22
outStr =
'p'
outStr =
'pd'
outStr =
'pda'
outStr =
'pday'
outStr =
'pdayn'
outStr =
'pdaynk'
outStr =
'pdaynks'
outStr =
'pdaynksb'
outStr =
'pdaynksbh'
outStr =
'pdaynksbhe'
outStr =
'pdaynksbhea'
outStr =
'pdaynksbheao'
outStr =
'pdaynksbheaow'
outStr =
'pdaynksbheaowp'
outStr =
'pdaynksbheaowpi'
outStr =
'pdaynksbheaowpie'
outStr =
'pdaynksbheaowpiez'
outStr =
'pdaynksbheaowpiezj'
outStr =
'pdaynksbheaowpiezje'
outStr =
'pdaynksbheaowpiezjec'
outStr =
'pdaynksbheaowpiezjecd'
outStr =
'pdaynksbheaowpiezjecdp'
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
951 Solvers
1961 Solvers
Get the length of a given vector
3559 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!