Skip to content

Commit 0c14cdd

Browse files
authored
Update README.md
1 parent 99fa73b commit 0c14cdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/13.3-Filter_list_strings/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# `13.3` Filter list string
22

3-
## 📝Instructions:
3+
## 📝 Instructions:
44

5-
1. Given a list of names called `names` please create a function that filters the list with only the names that contain the given string.
5+
1. Given a list of `names` please create a function that filters the list with only the names that contain the given string.
66

77
2. The given string is `'am'`
88

99
3. The search should NOT be Case Sensitive.
1010

11-
## Expected result:
11+
## 💻 Expected result:
1212

1313
```py
1414
['Liam', 'William', 'James', 'Benjamin', 'Samuel', 'Camila']

0 commit comments

Comments
 (0)