The document discusses two algorithms for matrix multiplication and finding the median of an unsorted list:
1) Strassen's algorithm improves on the traditional O(n^3) matrix multiplication algorithm by using divide and conquer to achieve O(n^lg7) time complexity.
2) Finding the median can be done in expected O(n) time using quickselect, or deterministically in O(n) time by choosing the median of medians as the pivot.