We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 152aaf9 commit eb9ff26Copy full SHA for eb9ff26
exercises/27-sequence-of-words/solution.hide.py
@@ -1,4 +1,7 @@
1
+# Your code here
2
def sequence_of_words(words):
3
items=[x for x in "{}".format(words).split(',')]
4
items.sort()
5
return (','.join(items))
6
+
7
+print(sequence_of_words("this,is,sorted"))
0 commit comments