Compare commits

..

2 Commits

Author SHA1 Message Date
764e408a5f
Convert "Travellers" to typst
Some checks failed
CI / Typst formatting (pull_request) Successful in 8s
CI / Typos (pull_request) Failing after 15s
CI / Build (pull_request) Has been skipped
2025-01-22 21:36:40 -08:00
a1190fbcd7
Convert "Regex" to typst 2025-01-22 21:36:35 -08:00

View File

@ -118,13 +118,16 @@ Write patterns that match the following strings:
#hint([Remember that the check digit may be an `X`. Dashes are optional.]) #hint([Remember that the check digit may be an `X`. Dashes are optional.])
- A word of even length. \ - A word of even length. \
#hint([The set `[A-z]` contains every english letter, capitalized and lowercase. \ #hint([
`[a-z]` will only match lowercase letters.]) The set `[A-z]` contains every english letter, capitalized and lowercase. \
`[a-z]` will only match lowercase letters.
])
- A word with exactly 3 vowels. \ - A word with exactly 3 vowels. \
#hint([The special token `\w` will match any word character. \ #hint([
The special token `\w` will match any word character. \
It is equivalent to `[A-z0-9_]`. `_` represents a literal underscore. It is equivalent to `[A-z0-9_]`. `_` represents a literal underscore.
]) ])
- A word that has even length and exactly 3 vowels. - A word that has even length and exactly 3 vowels.