+ 16
[ CHALLENGE ] 🔠🔠🔠 morph words 🔠🔠🔠
Given two words combine them to form one For example: envelope + totem = envetem happiness + loyalthy = happalthy young + hollow = youllow young + apple = youpple zimmer + teen = zimmeen Feel free to choose your own interesting output style!
12 Respuestas
+ 5
https://code.sololearn.com/cdQ5AnIBBzEK/#py
I know It's not precisely answering the challenge, but it makes morphings from words and returns readable results most of the time.
This code is a modification of a pseudowords creator I made based on common words list analysis. The results when feeding it with only 2 to 4 words is fun!
Note : it won't morph two words if they don't have a common character ...
+ 22
u can join (random no. of characters from beginning of 1st word ) with ( random no. of characters from ending of second word ) to form a new word
+ 13
Interested in my style?
https://code.sololearn.com/WOyttyeRdF2w/?ref=app
+ 12
Thank you!
Great idea! it will be very complex but awesome!
And yes, it would be a new very challenging challenge! lol, and more clear than this.
Waiting for your code!!
+ 11
My code as example
https://code.sololearn.com/cGyIWPWvBCW8/?ref=app
+ 11
Sorry if I wasn't clear, its not just cut and attack, the result should be nice.
You can use your fantasy and create a result whit some pretty logic.
the final word should be readable, and call in some ways the operands.
My example is a simple half + half but whit some rules.. not just half.. but near..
I hope is a bit more clear now.
+ 9
@Gaurav Agrawal do you think it's not a good CHALLENGE? can I make it better? what can I do?
Help please
+ 9
Yes but my intention is to form a nice readable result.
Ok, my purpose is probably too strange and unclear.
I tried.
Thanks for your help!
+ 9
I think this is a very nice challenge, and a complex one too. One way of do it would be separate the words into syllables..
It's hard to automate syllable splitting (matter for a new challenge, maybe?), since there are many rules..
Take a look at this papers:
* https://eprints.soton.ac.uk/264285/1/MarchandAdsettDamper_ISCA07.pdf
* http://www.tug.org/docs/liang/liang-thesis.pdf
Status: Trying to write some code to this challenge..
+ 2
Onelineribricole
https://code.sololearn.com/c4OajV4u65pC/?ref=app
+ 2
https://code.sololearn.com/cIwI6CYOPkDd/?ref=app