https://app.codesignal.com/arcade/intro/level-6/PWLT8GBrv9xXy4Dui
Given a string, your task is to replace each of its characters by the next one in the English alphabet; i.e. replace a
with b
, replace b
with c
, etc (z
would be replaced by a
).
For inputString = "crazy"
, the output should be solution(inputString) = "dsbaz"
.