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 c8c7826 commit e2dd63bCopy full SHA for e2dd63b
exercises/08.1-Merge_list/README.md
@@ -12,9 +12,11 @@ Write a function `merge_list` that merges two lists and returns a single new lis
12
13
4. Print the new variable with the merged lists.
14
15
- ## 💡 Hint:
+ ## 💡 Hints:
16
17
-- You will have to loop through each list and insert their items into a new list.
++ You will have to loop through each list and insert their items into a new list.
18
+
19
++ There are more ways to merge lists in python, this would be a good time for you to search on the Internet "how to merge lists in python".
20
21
## 💻 Expected result:
22
0 commit comments