HackerRank Deciphering Strings
1. Deciphering Strings The developers in Hackerworld want a string processing utility based on the Ceaser cipher. The cipher defines the distance between two characters x and y as the minimum gap between them considering cyclic arrangement. For example, the distance between ‘a’ and ‘z’ is min(1, 25) = 1, and the distance between ‘b’ …