Skip to content

Instantly share code, notes, and snippets.

@ChousinRahit
Created September 3, 2023 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChousinRahit/8f1f17dab053ab07a7b184595af99895 to your computer and use it in GitHub Desktop.
Save ChousinRahit/8f1f17dab053ab07a7b184595af99895 to your computer and use it in GitHub Desktop.
// Change Every Letter to the Next Letter
// Write a function that changes every letter to the next letter:
// "a" becomes "b"
// "b" becomes "c"
// "d" becomes "e"
// and so on ...
// move("hello") ➞ "ifmmp"
// move("bye") ➞ "czf"
// move("welcome") ➞ "xfmdpnf"
// Notes
// There will be no z's in the tests.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment