Time for another round of code golf!
Develop a function that performs a two-step encryption process on a given string:
First Step: Reverse Cipher
- Reverse the entire input string.
- Relocate the last character of the original string (now the first character of the reversed string) to the end.
Second Step: Alphabetic Index Binary Encoding
- For each alphabetic character, determine its zero-based index in the lowercase alphabet (a-z).
- Replace odd-indexed characters with '1' and even-indexed characters with '0'.
- Preserve non-alphabetic characters unchanged.
Example:
encrypt("Hello World!")


.png)
(1).jpg)
.png)

