Given a string, invert the case of every English letter (uppercase becomes lowercase and vice versa) while leaving all other characters unchanged. Toggle case with an XOR of 32 on letter codes.
Input: A JSON object {"s": <string>} containing printable ASCII characters.
Output: Return the case-inverted string.
Input: {"s":"Hello, World!"}
Output: hELLO, wORLD!
Explanation: Each letter flips case; punctuation stays -> 'hELLO, wORLD!'.Input: {"s":"abcXYZ"}
Output: ABCxyz
Explanation: Lower becomes upper and upper becomes lower -> 'ABCxyz'.0 <= s.length <= 10^4s contains printable ASCII