From 64ab37d2e88a3b124e50f7ad8476144782a91edc Mon Sep 17 00:00:00 2001 From: caoash Date: Thu, 4 Jun 2020 17:44:55 -0500 Subject: [PATCH 1/3] lists of lists ahh --- content/3_Gold/1_Gold_DP.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/3_Gold/1_Gold_DP.md b/content/3_Gold/1_Gold_DP.md index c8d1aa4..06f96ed 100644 --- a/content/3_Gold/1_Gold_DP.md +++ b/content/3_Gold/1_Gold_DP.md @@ -4,9 +4,13 @@ title: "Dynamic Programming" author: Michael Cao order: 1 prerequisites: + - - Prefix Sums + - - Recursion + - - Bit Operations (for Bitmask DP) + - - DFS and Trees (for Tree DP) --- From d5f704acfa25a8f7e1ce081226f39f12e78c789c Mon Sep 17 00:00:00 2001 From: Nathan Wang Date: Tue, 9 Jun 2020 10:45:07 -0700 Subject: [PATCH 2/3] update list formatting with actual frontmatter order --- src/templates/syllabusTemplate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/syllabusTemplate.js b/src/templates/syllabusTemplate.js index 4435f0b..d6e4fec 100644 --- a/src/templates/syllabusTemplate.js +++ b/src/templates/syllabusTemplate.js @@ -175,10 +175,10 @@ export default function Template(props) { -
    +
      {module.map(m => (
    1. - {m.node.frontmatter.title} + {m.node.frontmatter.order}. {m.node.frontmatter.title}
    2. ))}
    From de4f6bc74f5599fdf2586ca62a352b62dd311bd9 Mon Sep 17 00:00:00 2001 From: caoash Date: Tue, 9 Jun 2020 12:46:56 -0500 Subject: [PATCH 3/3] test spoiler formatting --- content/5_Gold/1_Gold_DP.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/5_Gold/1_Gold_DP.md b/content/5_Gold/1_Gold_DP.md index cfe1743..e67b833 100644 --- a/content/5_Gold/1_Gold_DP.md +++ b/content/5_Gold/1_Gold_DP.md @@ -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) * [Fruit Feast](http://www.usaco.org/index.php?page=viewproblem2&cpid=574) * [Cow Poetry](http://usaco.org/index.php?page=viewproblem2&cpid=897) - * needs fast exponentiation for full points + *
    + Spoiler + * needs fast exponentiation for full points + <\details> ## Paths on Grid (& Related)