This repository contains raw Python implementations of common data processing patterns:
- Grouping (sum, count, max)
- Nested dictionaries (multi-key grouping)
- Sorting and ranking
These mirror real-world operations commonly performed in:
- Pandas (groupby)
- SQL (GROUP BY, ORDER BY)
All solutions are implemented without external libraries to demonstrate core logic.