A collection of curated, high-quality resources to take you from Bronze to Platinum.
This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2020-06-04 17:25:41 -05:00
content changed desc 2020-06-04 17:25:41 -05:00
src add prerequisites list 2020-06-04 15:18:02 -07:00
.gitignore add gatsby front-end 2020-06-03 14:14:30 -07:00
.prettierignore add gatsby front-end 2020-06-03 14:14:30 -07:00
.prettierrc add gatsby front-end 2020-06-03 14:14:30 -07:00
gatsby-browser.js add basic gatsby template for markdown 2020-06-03 15:18:17 -07:00
gatsby-config.js add description and problems to each module 2020-06-03 20:54:18 -07:00
gatsby-node.js add basic gatsby template for markdown 2020-06-03 15:18:17 -07:00
gatsby-ssr.js add gatsby front-end 2020-06-03 14:14:30 -07:00
LICENSE add gatsby front-end 2020-06-03 14:14:30 -07:00
package.json fix nested bullet lists 2020-06-03 20:29:12 -07:00
README.md add prerequisites list 2020-06-04 15:18:02 -07:00
tailwind.config.js add basic gatsby template for markdown 2020-06-03 15:18:17 -07:00
yarn.lock fix nested bullet lists 2020-06-03 20:29:12 -07:00

USACO Guide

A collection of curated, high-quality resources to take you from Bronze to Platinum.

All markdown files belong in content/. Other files are for the front-end dashboard interface.

Todo list:

  • Sidebar for compact modules

Example Markdown

---
slug: /intro/getting-started
title: Getting Started
author: Nathan Wang
order: 1
prerequisites:
 -
     - Dummy prerequisite
     - https://dummy.prerequisite.link.com/
 -
     - Another Prerequisite
---

<ul class="syllabus-only">
  <li>Contest Format</li>
  <li>Choosing a Language</li>
  <li>Practicing and Debugging</li>
  <li>Contest Strategies</li>
</ul>

<!-- END DESCRIPTION -->

<details>
  <summary>Show Solution</summary>

  // Insert OP benq solution here
</details>