diff --git a/content/1_Intro/Choosing_Lang.mdx b/content/1_Intro/Choosing_Lang.mdx index f175c20..642401f 100644 --- a/content/1_Intro/Choosing_Lang.mdx +++ b/content/1_Intro/Choosing_Lang.mdx @@ -9,10 +9,10 @@ description: What languages you can use for programming contests. The most popular languages that USACO supports are [C++11](https://en.wikipedia.org/wiki/C%2B%2B), [Java](https://en.wikipedia.org/wiki/Java_(programming_language)), and [Python 3](https://en.wikipedia.org/wiki/Python_(programming_language)). Pascal used to be popular in the past, but its use is rare now, and many programming contests have removed or are planning to remove support for it in the near future (in short: don't use it now). In general, we recommend the following: - - If you already know one of these languages, just use it. + - **If you already know one of these languages, just use it.** - If you know multiple languages, we recommend you pick C++ over Java, and Java over Python. - - For Bronze, any language will do. - - For SilverHowever, if Python is the only language you know / you really want to use Python, you can still pass Silver with Python., Gold, and Platinum, Python is not recommended, because it is a slow language and lacks an ordered map. + - **For Bronze, any language will do.** It is possible to receive full credit with C++, Java, and Python in Bronze. + - **For SilverHowever, if Python is the only language you know / you really want to use Python, you can still pass Silver with Python., Gold, and Platinum, Python is not recommended**, because it is a slow language and lacks an ordered map. - Check "Factors to Consider When Choosing a Language" for more information. Keep in mind that it's easy to switch languages down the road. Don't get caught up on which language to choose. Just pick the one you feel most comfortable with! diff --git a/content/1_Intro/Modules.mdx b/content/1_Intro/Modules.mdx index 85517e9..e2fdcf1 100644 --- a/content/1_Intro/Modules.mdx +++ b/content/1_Intro/Modules.mdx @@ -5,9 +5,10 @@ author: Nathan Wang, Benjamin Qi description: How this guide is organized. --- -The material in this guide will be grouped into **modules** such as the one you're reading right now. A module will consist of several resources, practice problems, and additional content specific to the module. +The material in this guide will be grouped into **modules** such as the one you're reading right now. A module will consist of several resources, practice problems, and additional content specific to the module. -## Lesson +## Lesson + - A curated collection of external resources, problems, and supplementary text we've written ourselves. - The goal is to introduce you to the concept. - Everything is meant to be completed in order. - Usually begins with at least one standard problem, marked "Intro" in the difficulty column.