Problem 42441. Code Wheel
Create a function that offsets each value in a given string by a given amount.
For instance,
codewheel('hello',1)
should output 'ifmmp'.
The output string should have the same punctuation, spacing, and capitalization as the input, so
codewheel('Hello, World!',3)
should output 'Khoor, Zruog!'.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers24
Suggested Problems
-
Remove white space from the string
196 Solvers
-
318 Solvers
-
230 Solvers
-
314 Solvers
-
737 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!