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
2020-06-15 16:19:07 -07:00

69 lines
1,020 B
JavaScript

const ModuleOrdering = {
"intro": [
"about-this",
"getting-started",
"prerequisites",
"running-cpp",
"problems"
],
"general": [
"resources",
"contests",
"why-cpp",
"practicing",
"strategy",
"debugging",
"macros"
],
"bronze": [
"overview",
"rectangle-geometry",
"collections",
"containers",
"ds",
"pairs",
"simulation",
"complete-search"
],
"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;