+ 22
https://code.sololearn.com/cYM9fQoicHnz/?ref=app 12 lines of code does it all in python. It couldn't be easier.
16th Nov 2017, 10:41 AM
Ore
Ore - avatar
18th Nov 2017, 12:59 PM
David Akhihiero
David Akhihiero - avatar
+ 12
Sorry to be late here is my Try JAVA https://code.sololearn.com/clh2xQuPyo34
18th Nov 2017, 6:42 PM
Said BAHAOUARY
Said BAHAOUARY - avatar
+ 8
@@ Ace py-one liner.. ## INPUT SHOULD BE SEPERATED BY COMMA(,)## https://code.sololearn.com/cW4zY1yUp6Y2/?ref=app
16th Nov 2017, 4:18 PM
sayan chandra
sayan chandra - avatar
18th Nov 2017, 1:49 AM
SAKSHI
SAKSHI - avatar
+ 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
16th Nov 2017, 6:36 AM
Ipang
18th Nov 2017, 6:54 AM
Mahdi Cheikhrouhou
Mahdi Cheikhrouhou - avatar
+ 6
hello I like this challenge my try: https://code.sololearn.com/camWoijhw5WG/?ref=app
18th Nov 2017, 7:30 PM
Coder++
Coder++ - avatar
19th Nov 2017, 5:34 PM
Justine Ogaraku
Justine Ogaraku - avatar
17th Nov 2017, 3:24 PM
Tuấn Kiệt Trần
Tuấn Kiệt Trần - avatar
+ 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
18th Nov 2017, 1:45 PM
Devendra Kumar
Devendra Kumar - avatar
19th Nov 2017, 4:40 AM
Kartik
Kartik - avatar
19th Nov 2017, 6:07 AM
Divesh Singh
Divesh Singh - avatar
+ 4
Here's mine (I'm still learning about Ruby, yay) https://code.sololearn.com/c8NQUHtlSKz8/#rb
16th Nov 2017, 12:37 PM
Mickel
Mickel - avatar
+ 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
17th Nov 2017, 3:46 PM
Mike Weiss
Mike Weiss - avatar
17th Nov 2017, 9:00 PM
Mostafa Husseini
Mostafa Husseini - avatar
+ 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
19th Nov 2017, 2:09 AM
Sleepy
Sleepy - avatar
+ 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))
18th Nov 2017, 3:03 AM
Vikaash
Vikaash - avatar
+ 3
https://code.sololearn.com/c0Zj0UPwbEzs/#cs A C# proposal for string replacement ;)
18th Nov 2017, 9:10 AM
David RIEHL
David RIEHL - avatar
18th Nov 2017, 1:42 PM
Daniel Santos
Daniel Santos - avatar