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.
usaco-guide/content/ordering.js

71 lines
1 KiB
JavaScript
Raw Normal View History

2020-06-15 23:19:07 +00:00
const ModuleOrdering = {
"intro": [
"about-this",
"getting-started",
"prerequisites",
"running-cpp",
2020-06-15 23:43:56 +00:00
"problems",
"syllabus",
2020-06-15 23:19:07 +00:00
],
"general": [
"resources",
"contests",
"why-cpp",
"practicing",
"strategy",
"debugging",
2020-06-15 23:30:49 +00:00
"macros",
"proposing",
2020-06-15 23:19:07 +00:00
],
"bronze": [
"overview",
"rectangle-geometry",
"collections",
"containers",
"ds",
"pairs",
"simulation",
2020-06-15 23:30:49 +00:00
"complete-search",
2020-06-15 23:19:07 +00:00
],
"silver": [
"complexity",
"greedy",
"sorting",
"binary-search",
"two-pointers",
"prefix-sums",
"data-structures",
"dfs"
],
"gold": [
"dp",
"bfs",
"toposort",
"sp",
"mst",
"bit",
"introductory-number-theory",
"dp-trees"
],
"plat": [
"oly",
"trees",
"1DRQ",
"2DRQ",
"geo",
"graphs",
"hashing",
"bitset",
"fracture",
"slope",
{
name: "Dynamic Programming",
items: [
"dp-bitmasks",
"dp-ranges"
]
}
]
};
export default ModuleOrdering;