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 de16793 commit cf7c26fCopy full SHA for cf7c26f
exercises/27-sequence-of-words/README.md
@@ -2,14 +2,14 @@
2
3
## 📝 Instructions:
4
5
-1. Write a function `two_dimensional_list`, that accepts a comma separated sequence of words as input.
+1. Write a function `sequence_of_words`, that accepts a comma separated sequence of words as input.
6
7
2. Print the words in a comma-separated sequence after sorting them alphabetically.
8
9
## 📎 Example input:
10
11
```py
12
-(without,hello,bag,world)
+sequence_of_words(without,hello,bag,world)
13
```
14
15
## 📎 Example output:
0 commit comments