On the lab desk, you discover a short note filled with strange letters.
After examining it, you realize it’s written in a Caesar cipher, where each letter was shifted two positions forward in the alphabet.
To decode it, you must shift each letter two positions backward.
Assume the message only contains lowercase English letters and wraps around ('a' becomes 'y', 'b' becomes 'z').
Write a function that returns the decoded message string.

Solution Stats

60 Solutions

52 Solvers

Last Solution submitted on May 02, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...