Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
There is a problem with your keyboard: it randomly writes symbols when you are typing a text. You need to clean up the text by removing all symbols.
Take a text that includes some random symbols and translate it into a text that has none of them. The resulting text should only include letters and numbers.
A string with random symbols.
A string of the text with all the symbols removed.
#l$e%ts go @an#d@@ g***et #l#unch$$$
lets go and get lunch
If you take out every symbol and leave only the letters and numbers, your text says lets go and get lunch.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |