Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
You are a secret agent, and you receive an encrypted message that needs to be decoded. The code that is being used flips the message backwards and inserts non-alphabetic characters in the message to make it hard to decipher.
Create a program that will take the encoded message, flip it around, remove any characters that are not a letter or a space, and output the hidden message.
A string of characters that represent the encoded message.
A string of character that represent the intended secret message.
d89%l++5r19o7W *o=l645le9H
Hello World
If you remove everything that isn’t a letter or space from the original message and flip it around, you get ‘Hello World’.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |