Skip to main content

All 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 ...
Abdifatah Abdi's user avatar
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 ...
dmr's user avatar
  • 321
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 ...
Nathan's user avatar

close