+ 17
Coding Challenge :: Dictionary (Lexicon)
Given a list of words, it is often needed to re-arrange them in alphabetical order... This is sometimes useful in many situations when a set of tasks has to be specified in this order... Write a code that takes a maximum of 10 words from the User, and re-arrange those words in the "dictionary-order"! Your code should properly output the User inputs in the order of input, and then list out these words in the new alphabetical arrangement order. ^-^
12 ответов
+ 14
(ಠ益ಠ) NAN DESU KA ?! (ಠ益ಠ)
*As usual i did not understand what i had to do, now it should be fine*
https://code.sololearn.com/WpdYwEtPydxL/?ref=app
+ 13
/* My 50th Challenge */
My try:
https://code.sololearn.com/WOCjJmPNDwE8/?ref=app
+ 9
Here is my entry in C#:
https://code.sololearn.com/cwHSjdakjinP/#cs
+ 8
https://code.sololearn.com/W8ClP8FuRYp6/?ref=app
+ 5
Is it right ? → https://code.sololearn.com/cq7GByCriinD/?ref=app
+ 5
Here's mine in Java
https://code.sololearn.com/cgk3HeQCHUU2/?ref=app
+ 4
hers two line code in pythonn
checkitout#
input words seperated with spaces
https://code.sololearn.com/cEQ2nVPkq4Ea/?ref=app
+ 4
here is my try sorry if any mistake
https://code.sololearn.com/cjvDvzmpS6t3/?ref=app
+ 4
Hi, this is my try in Python..
https://code.sololearn.com/cjo797iBbe3s/?ref=app
+ 3
here mine: https://code.sololearn.com/W11MAmZdm4Zg/
+ 3
here the python way. https://code.sololearn.com/c95A2Ad3wTiT/?ref=app
+ 3
Mine in ruby.. https://code.sololearn.com/c6HuTP1cO4u1/
(in most languages this is a trivial task, implementing it from zero, for example in C would be nice..)