Find the Encrypted String
You are given a string s and an integer k. Encrypt the string using the following algorithm:
For each character c in s, replace c with the k<sup>th</sup> character after c in the string (in a cyclic manner).
Return the encrypted string.
LeetCode Pr...
perfinsights.hashnode.dev1 min read