Skip to content

Commit e0553fc

Browse files
authored
Update README.md
1 parent 9c9521b commit e0553fc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

exercises/12.1-more_mapping/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ result = map(increment_by_one, my_list) # returns [2, 3, 4, 5]
2020

2121
## 💡 Hints:
2222

23-
+ The function will take a parameter with the original item being transformed and added into the new list.
24-
25-
+ Remember that your function must return each of the new items to be stored into the new list.
26-
23+
+ The `map()` function will apply the specified function to every item in your list.
2724

25+
+ Remember to store your result in the `new_list`.

0 commit comments

Comments
 (0)