fix(curriculum): fixed typo in workshop medical data validator step 17 (#61767)

This commit is contained in:
Clarence Bakosi
2025-08-11 12:13:24 +01:00
committed by GitHub
parent e9ee37c603
commit f4307c7d0f

View File

@@ -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`.