The document discusses brute force algorithms. It provides examples of problems that can be solved using brute force, including sorting algorithms like selection sort and bubble sort. It then summarizes two geometric problems - the closest pair problem and the convex hull problem - and provides pseudocode for brute force algorithms to solve each problem. The time complexity of these brute force algorithms is O(n^3).