public static void Main()
var result = Decrypt("dnotq");
foreach(var r in result) {
public static char[] Decrypt(string word) {
if (string.IsNullOrEmpty(word)) {
var result = new char[word.Length];
result[0] = (char)((int)word[0] - 1);
for(int i = 1; i< word.Length; i++) {
int temp = (int)word[i] - (int)word[i-1];