- 2010: Introductory STL (10 parts)
- microsoft/nurikabe: I open-sourced and slightly modernized my Nurikabe puzzle solver.
- 2011: Advanced STL: Part 1, Part 2, Part 3, Part 4, Part 5, Part 6
- These videos weren't migrated
// Boost.uBLAS solution by Stephan T. Lavavej | |
// for https://www.reddit.com/r/cpp/comments/z1xich/c_interview_coding_exercise_with_solution/ | |
#include <algorithm> | |
#include <cassert> | |
#include <chrono> | |
#include <cstddef> | |
#include <cstdint> | |
#include <format> | |
#include <iostream> |
// Original solution by Stephan T. Lavavej | |
// for https://www.reddit.com/r/cpp/comments/z1xich/c_interview_coding_exercise_with_solution/ | |
#include <algorithm> | |
#include <cassert> | |
#include <cstddef> | |
#include <cstdint> | |
#include <format> | |
#include <iostream> | |
#include <numeric> |