This commit is contained in:
Benjamin Qi 2020-06-09 13:47:49 -04:00
commit 53d96ae57e
2 changed files with 6 additions and 3 deletions

View file

@ -55,7 +55,10 @@ Practice makes perfect. Start by doing some classical problems (try at least one
* [Talent Show](http://www.usaco.org/index.php?page=viewproblem2&cpid=839) * [Talent Show](http://www.usaco.org/index.php?page=viewproblem2&cpid=839)
* [Fruit Feast](http://www.usaco.org/index.php?page=viewproblem2&cpid=574) * [Fruit Feast](http://www.usaco.org/index.php?page=viewproblem2&cpid=574)
* [Cow Poetry](http://usaco.org/index.php?page=viewproblem2&cpid=897) * [Cow Poetry](http://usaco.org/index.php?page=viewproblem2&cpid=897)
* needs fast exponentiation for full points * <details>
<summary> Spoiler</summary>
* needs fast exponentiation for full points
<\details>
## Paths on Grid (& Related) ## Paths on Grid (& Related)

View file

@ -175,10 +175,10 @@ export default function Template(props) {
</nav> </nav>
</div> </div>
<ol className="list-decimal list-inside py-8 px-8 text-lg space-y-1"> <ol className="list-inside py-8 px-8 text-lg space-y-1">
{module.map(m => ( {module.map(m => (
<li key={m.node.frontmatter.slug}> <li key={m.node.frontmatter.slug}>
<Link className="ml-2 text-blue-600 underline" to={m.node.frontmatter.slug}>{m.node.frontmatter.title}</Link> {m.node.frontmatter.order}. <Link className="ml-2 text-blue-600 underline" to={m.node.frontmatter.slug}>{m.node.frontmatter.title}</Link>
</li> </li>
))} ))}
</ol> </ol>