Shaun Hamilton da166363eb
fix(curriculum): add clarification to question and escape backslash (#38951)
* fix: add clarification to question

* fix: adjust word placement

Adjust word placement in python for everybody curriculum

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2020-06-02 16:27:51 +09:00

440 B

id, title, challengeType, isHidden, isRequired, videoId
id title challengeType isHidden isRequired videoId
5e7b9f0b0b6c005b0e76f06e Regular Expressions 11 true true Yud_COr6pZo

Description

Tests

question:
  text: |
    Which regex matches only a white space character?

  answers:
    - |
        \S
    - |
        \s
    - |
        .
    - |
        \_
    - |
        \\.
  solution: 2