* fix: remove isHidden flag from frontmatter * fix: add isUpcomingChange Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com> * feat: hide blocks not challenges Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com> Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
456 B
456 B
id, title, challengeType, isRequired, videoId
id | title | challengeType | isRequired | videoId |
---|---|---|---|---|
5e6a54c358d3af90110a60a3 | Introduction: Elements of Python | 11 | true | aRY_xjL35v0 |
Description
Tests
question:
text: |
What will the following program print out:
```python
x = 43
x = x + 1
print(x)
```
answers:
- |
x
- |
x + 1
- |
44
solution: 3