Decrypt a message shifted by a given Caesar cipher key.
Constraints
Example
>>> caesar_decrypt('ibm', 1)
'hal'
>>> caesar_decrypt('khoor', 3)
'hello'
>>> caesar_decrypt('abc', 0)
'abc'
>>> caesar_decrypt('z', 1)
'y'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints