Compare commits

..

5 Commits

Author SHA1 Message Date
b1410dc86d
Convert "Travellers" to typst
All checks were successful
CI / Typst formatting (pull_request) Successful in 8s
CI / Typos (pull_request) Successful in 13s
CI / Build (pull_request) Successful in 12m32s
2025-01-22 21:38:59 -08:00
da4b47cc1c
Convert "Regex" to typst 2025-01-22 21:38:55 -08:00
dde5e15a71
Convert "Prime Factors" to typst 2025-01-22 21:38:55 -08:00
f85c3434e3
Convert "Partition Products" to typst 2025-01-22 21:38:55 -08:00
782ac90cbb
Convert "Mario Kart" to typst 2025-01-22 21:38:52 -08:00
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ What is the largest possible $n$, and how is it achieved?
A 11-way tie is possible, with a top score of 28:
- Four players finish $1^#text("st")$, $3^#text("ed")$, $11^#text("th")$, and $12^#text("th")$;
- Four players finish $2^#text("nd")$, $4^#text("th")$, $9^#text("th")$, and $10^#text("th")$;
- Four players finish $2^#text("nd")$, $4^#text("th")$, $9^#text("th")$, and $10^#text("th")$; // spell:disable-line
- Two players finish fifth twice and seventh twice,
- One player finishes sixth in each race.
The final player always finishes eighth, with a non-tie score of 20.

View File

@ -62,7 +62,7 @@ Brackets `{min, max}` are the most flexible quantifier. \
They specify exactly how many tokens to match: \
`ab{2}a` will match only `abba`. \
`ab{1,3}a` will match only `aba`, `abba`, and `abbba`. \
`ab{2,}a` will match any `ab...ba` with at least two `b`s.
`ab{2,}a` will match any `ab...ba` with at least two `b`s. // spell:disable-line
#problem()
Write the patterns `a*` and `a+` using only `{ }`.