mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-12 01:00:13 -04:00
fix(curriculum): fixed typo in workshop medical data validator step 17 (#61767)
This commit is contained in:
@@ -14,7 +14,7 @@ integers = set([3, 5, 1, 2, 1, 3, 4])
|
||||
print(integers) # {1, 2, 3, 4, 5}
|
||||
```
|
||||
|
||||
You're going to use a set to ensure that each dictionary does not contain extra or mispelled keys.
|
||||
You're going to use a set to ensure that each dictionary does not contain extra or misspelled keys.
|
||||
|
||||
Use the `set()` constructor to create a set from the following list of keys that each dictionary should have: `['patient_id', 'age', 'gender', 'diagnosis', 'medications', 'last_visit_id']`. Assign the set to a variable named `key_set`.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user