Skip to content

Commit cf7c26f

Browse files
authored
Update README.md
1 parent de16793 commit cf7c26f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/27-sequence-of-words/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
## 📝 Instructions:
44

5-
1. Write a function `two_dimensional_list`, that accepts a comma separated sequence of words as input.
5+
1. Write a function `sequence_of_words`, that accepts a comma separated sequence of words as input.
66

77
2. Print the words in a comma-separated sequence after sorting them alphabetically.
88

99
## 📎 Example input:
1010

1111
```py
12-
(without,hello,bag,world)
12+
sequence_of_words(without,hello,bag,world)
1313
```
1414

1515
## 📎 Example output:

0 commit comments

Comments
 (0)