Company: JPMC_1april
Difficulty: medium
You are given an encrypted string encrypted consisting only of uppercase English letters (A-Z). The encryption is based on an alphabet wheel that wraps around from Z back to A. To decrypt the string: Replace each character with the letter that is k positions counter-clockwise on the alphabet wheel Counter-clockwise means moving backward through the alphabet The wheel wraps around, so moving backward from A goes to Z Your task is to return the decrypted string after applying this shift to every character. Example Suppose encrypted = 'VTAOG' and k = 2. Output: "TRYME" Explanation: V -> 2 steps counter-clockwise -> T T -> 2 steps counter-clockwise -> R A -> 2 steps counter-clockwise -> Y O -> 2 steps counter-clockwise -> M G -> 2 steps counter-clockwise -> E Constraints 1 ≤ length of encrypted ≤ 10 5 1 ≤ k ≤ 10 5 encrypted consists of uppercase English letters, 'A'-'Z'. /* * Complete the 'simpleCipher' function below. * * The function is expected