Skip to content

Commit d2357f4

Browse files
authored
Update README.md
1 parent e84c78a commit d2357f4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@
99
## 📎 Example input:
1010

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

1515
## 📎 Example output:
1616

1717
```py
1818
bag, hello, without, world
1919
```
20+
21+
## 💡 Hint:
22+
23+
+ Remember that each word must be separated by a comma and inside one pair of quotes.

0 commit comments

Comments
 (0)