+ 58
Challenge: Overwriting
Try to do a program in any language which: 0- Be commented to explain it. 1- Get a message. 2 - Convert it vowels to numbers. a/A -> 4 e/E -> 3 i/I -> 1 o/O -> 0 u/U -> 7 3- Show original and converted message. For example: message = "This is Sololearn" converted = "Th1s 1s S0l0l34rn"
96 odpowiedzi
+ 19
I made one web version here:
https://code.sololearn.com/WSglyHbhvqf9/?ref=app
+ 39
https://code.sololearn.com/cffNrta3i2zL/?ref=app
+ 28
https://code.sololearn.com/cAD6ZaE5ywg1/?ref=app
+ 22
Basic C approach: (Edit { print original})
https://code.sololearn.com/czxXJOIgn5NR/#c
+ 21
https://code.sololearn.com/cW8yOOVkG5M3/?ref=app
+ 19
This type of challenge, help discover newer concepts. Nice
https://code.sololearn.com/cTWnAOvZ18Cq/?ref=app
+ 18
challenge accepted 😎:: overwriting
https://code.sololearn.com/cL5vbM6gJvwG/?ref=app
+ 17
Here is my code:
https://code.sololearn.com/cx9V9V26elZo/?ref=app
+ 17
here is mine
https://code.sololearn.com/W5KNqqM1O9kg/?ref=app
+ 16
@Daniel, here is my attempt for the challenge.
Thank you, it is a nice challenge : )
https://code.sololearn.com/ce3RN9ul2FEY/?ref=app
+ 16
Here's my C# implementation! ✌
LINQ One-Liner〰
new string(message.Select(c =>
leetMapper.ContainsKey(c) ?
leetMapper[c] : c).ToArray())
It has been a really long time I didn't submit to challenge entry. Enjoy~ 😄
https://code.sololearn.com/cGhKwt8HnkQb/?ref=app
+ 15
Challenge accepted and this is my code.
https://code.sololearn.com/WJz7N2VzTi14/?ref=app
+ 15
@Daniel, many thanks ✌
+ 14
Here's my try
https://code.sololearn.com/c4zWo0TWYRZ2/?ref=app
+ 14
+ 14
Here's my try:
https://code.sololearn.com/c483pnIsU8zQ/?ref=app
+ 13
Nice !
My try :
https://code.sololearn.com/cV4kZmIu7Vup/?ref=app
+ 13
+ 12
Here's mine
https://code.sololearn.com/c511vyA3Y6vt/#rb