Split two n×n matrices into four n/2×n/2 submatrices and combine results using divide & conquer.
The visualization shows block splitting, recursive multiplication of subblocks, and accumulation into C. This uses the classical 8 subproduct approach (no Strassen optimizations here).
Radix sort sorts integers by processing digits (least significant digit first for LSD). It repeatedly uses a stable counting sort on digits.
Visualization shows each digit pass and the stable bucketed order.
Q1: Radix sort is stable: true or false?
Answer: True