All Questions
3 questions
5votes
3answers
906views
Letter Changes coderbyte
I've solved the problem below just would like some feedback? The function LetterChanges(str) takes a str parameter Replace every letter in the string with ...
6votes
3answers
58kviews
Replacing every letter in a string with the letter following it in the alphabet
I am working through some of the exercises at Coberbyte. The instructions for this exercise are to replace every letter in a string with the letter following it in the alphabet (i.e., c becomes d, z ...
3votes
2answers
3kviews
Rotate every letter in string by K places
The challenge: Given a string S and a fixed number K, rotate every letter in S by K places (if reach the end of the alphabet, go back to the beginning). Letters should remain the same case. Symbols ...