Silver
The topics below are not exhaustive for this division.
Contest problems may contain topics not covered in the guide, or topics listed under different divisions!
Modules Progress
Problems Progress
Prefix Sums
Sorting & Searching
Two Pointers
Not Frequent
Iterating two monotonic pointers across an array to search for a pair of indices satisfying some condition in linear time.
Updated: Yesterday
Binary Search on a Sorted Array
Somewhat Frequent
Efficiently searching for a value in a sorted array.
Updated: Yesterday
Binary Search
Somewhat Frequent
Binary searching on arbitrary monotonic functions.
Updated: Yesterday
Custom Comparators and Coordinate Compression
Somewhat Frequent
Using a custom comparator to sort custom objects or values in a non-default order, and compressing values from a large range to a smaller one.
Updated: Yesterday
Greedy Algorithms with Sorting
Somewhat Frequent
Solving greedy problems by sorting the input.
Updated: Yesterday
Priority Queues
Not Frequent
A data structure that supports insert, query max, and pop max.
Updated: Yesterday
Graphs
Most Silver to Platinum contests have at least one graph problem.
Graph Traversal
Very Frequent
Traversing a graph with depth first search and breadth first search.
Updated: Yesterday
Flood Fill
Somewhat Frequent
Finding connected components in a graph represented by a grid.
Updated: Yesterday
Introduction to Tree Algorithms
Not Frequent
Introducing a special type of graph: trees.
Updated: Yesterday
Introduction to Functional Graphs
Not Frequent
Directed graphs in which every vertex has exactly one outgoing edge.
Updated: Yesterday
Additional Topics
Conclusion
Congratulations on making it this far!