Welcome! Please follow the instructions carefully to complete your submission.
Submit a Python file that solves the following:
A spy sends you a string of space-separated numbers. Each number is an ASCII code, but the real message is hidden among them.
- First, pick every 3rd character starting from index 1.
- Then, reverse that sequence.
- Print the final message — no spaces or symbols.
Input
120 101 122 101 100 103 72 111 79 78 99
Output
code
Because,
code -> 99 111 100 101
reversed -> 101 100 111 99
with noise -> 120 101 122 101 100 103 72 111 79 78 99
Use your first name in the filename.
-
Example:
anand_spy.pyanand_spy.ipynb
-
Clone the repo to your computer:
git clone [https://github.com/org-name/assignment-name-yourusername.git] cd assignment-name-yourusername -
Add your code to the repo folder.
-
Commit and push:
git add .
git commit -m "Finished my solution"
git push origin main- Done! Your work is submitted.