Contributing

Authors: Nathan Wang, Benjamin Qi

How to contribute!

Note that the USACO Guide has a public Github Repository. Feel free to contribute by submitting issues and Pull Requests!

Please help fix some of the issues on our Github Repository!

Ways to Contribute

Some examples:

Lesson

  • Convert lists of resources to tables (Plat / Advanced).
  • Add missing descriptions for sections, modules, or resources.
    • All resources should have descriptions.
  • Improve explanations for sample problems.
    • If starred resource or editorial already has a good explanation, no need to repeat it.
  • Improve implementations.
    • Include code handling input & output.
    • Should be consistent across languages.
  • Adding modules!

Problems

  • Convert lists of problems to tables (Plat / Advanced).
  • Fix problem difficulties and tags.
  • Add problems that are good examples of the module topic (and remove those that are not).
  • Adding official editorial links.
    • Those for USACO are automatically generated.
  • Adding editorials.
    • If no editorial exists, or if existing editorial could be improved.
    • Or solution code in a different language, etc.

Writing Content

All modules are written in MDX (Markdown + JSX), with limited Latex support from KaTeX and some custom components. You can check how an .mdx file renders by pasting it in the live editor.

See the Content Documentation for more info.

Useful Links

Adding a Solution

First, fork the GitHub repository.

If it doesn't already exist, create a new mdx file in solutions including frontmatter, ex. the following in USACO jan17-cow-dance-show.mdx:

---
id: usaco-690
source: USACO Silver 2017 January
title: Cow Dance Show
author: Óscar Garries
---

[Official Analysis](http://www.usaco.org/current/data/sol_cowdance_silver_jan17.html)

<LanguageSection>

<CPPSection>

**Time Complexity:** $\mathcal{O}(N\log^2N)$

(add code + explanation here ...)

</CPPSection>

</LanguageSection>

Use CPPSection, JavaSection and PySection for C++, Java, and Python respectively (see the documentation for more info). It is not necessary to add an alternative implementation in the same language as the official analysis (unless the alternative implementation takes a different approach or is written better / differently from the official implementation).

Keep file and ID names consistent; namely, USACO IDs should correspond to the URL on usaco.org. Then add the solution ID (usaco-690) as the last argument of the Problem constructor in the corresponding module (in this case, Binary_Search_Ans.mdx).

new Problem(
  'Silver',
  'Cow Dance Show',
  '690',
  'Easy',
  false,
  [],
  'usaco-690'
),

Make sure to check that both the module and the solution render properly using the live editor before submitting a pull request.

Module Progress:

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!

Give Us Feedback on Contributing!