Oliver Eyton-Williams bd68b70f3d
Feat: hide blocks not challenges (#39504)
* 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>
2020-09-03 15:07:40 -07:00

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