+ 22
https://code.sololearn.com/cYM9fQoicHnz/?ref=app
12 lines of code does it all in python. It couldn't be easier.
+ 14
My late attempt
https://code.sololearn.com/c6ry7McCYo4Y/?ref=app
+ 12
Sorry to be late here is my Try JAVA
https://code.sololearn.com/clh2xQuPyo34
+ 8
@@ Ace
py-one liner..
## INPUT SHOULD BE SEPERATED BY COMMA(,)##
https://code.sololearn.com/cW4zY1yUp6Y2/?ref=app
+ 8
my trails in ruby....
https://code.sololearn.com/c3iVxDiJ16Mt/?ref=app
+ 6
I have a code that replaces each character in a string into its representative NATO phonetic word, is that somewhat related? I will stand down if it's not :)
Wrote another find-replace code to fulfill @Ace's requirements.
https://code.sololearn.com/cVcQvB0kvRl5/?ref=app
https://code.sololearn.com/cM4i776C7obP/?ref=app
+ 6
this is my 7-lines code in python https://code.sololearn.com/cftOlVGQ6Ta7/?ref=app
+ 6
hello I like this challenge
my try:
https://code.sololearn.com/camWoijhw5WG/?ref=app
+ 6
This is how we do it, with Python😉
https://code.sololearn.com/cy0MO5xXy38w/?ref=app
+ 5
Here's mine.
https://code.sololearn.com/civv5wkO2Chv/?ref=app
+ 5
according to requirements and compatible to solo learn platform to run there
https://code.sololearn.com/c62920uJcz51/?ref=app
https://code.sololearn.com/c62920uJcz51/?ref=app
+ 5
Here's my solution in Python
https://code.sololearn.com/c41dGWlTs7R2/?ref=app
+ 5
Here's my try in Python:
https://code.sololearn.com/cC5eef4f72hB/?ref=app
+ 4
Here's mine (I'm still learning about Ruby, yay)
https://code.sololearn.com/c8NQUHtlSKz8/#rb
+ 4
Super simple java app that works on any 3 space separated strings to find and replace the 2nd string in the 1st string with the 3rd!
https://code.sololearn.com/czkuXCTrVlGW/#java
+ 4
like this?
https://code.sololearn.com/cBk4909Dt3HX/#cpp
first input the text
second input the character we are gonna replace
third enter the text/char that we are gonna replace the replacable character with
+ 3
var word = prompt("Enter the word")||"Vikaash",letter = prompt("Enter the letter")||"a",alt = prompt("Enter replacement")||"z";
console.log(word.split(letter).join(alt))
+ 3
https://code.sololearn.com/c0Zj0UPwbEzs/#cs
A C# proposal for string replacement ;)