You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ Find and return a new list of data where each item's value key is equal to or gr
69
69
70
70
Amend the list so each domain key value is prepended with the string `www.`
71
71
72
-
**Example:** An amended dictionary should look like this.
72
+
**Example:** An amended dictionary should look like this, facebook.com has become www.facebook.com.
73
73
74
74
```python
75
75
{
@@ -83,11 +83,11 @@ Amend the list so each domain key value is prepended with the string `www.`
83
83
84
84
### Task Three: Cleanse Data
85
85
86
-
Some of the data is inaccurate, the secure key is set to False when the url key contains a url beginning with `https://`. The opposite is also true in some cases.
86
+
Some of the data is inaccurate, the secure key is set to False when the url key contains a URL beginning with `https://`. The opposite is also true in some cases.
87
87
88
88
The list should be cleansed and returned so the secure keys are accurate.
89
89
90
-
**Example:** The below dictionary should be amended to look as follows. It's current state is secure equals false even though the url key contains `https://`.
90
+
**Example:** The below dictionary should be amended to look as follows. It's current state is secure equals False even though the url key contains `https://`.
91
91
92
92
```python
93
93
{
@@ -103,7 +103,7 @@ The list should be cleansed and returned so the secure keys are accurate.
103
103
104
104
Add up all the value keys in the list and return an integer.
105
105
106
-
**Example:** If we added up the below value keys we'd get an integer of 9.
106
+
**Example:** If we added up the below value keys we'd get an integer of 9, 5 + 4.
0 commit comments