Skip to content

Instantly share code, notes, and snippets.

View StephanTLavavej's full-sized avatar

Stephan T. Lavavej StephanTLavavej

View GitHub Profile
@StephanTLavavej
StephanTLavavej / boost_ublas.cpp
Created November 23, 2022 05:53
Boost.uBLAS solution for parquet tiles coding exercise
// 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>
@StephanTLavavej
StephanTLavavej / stl_tiles.cpp
Created November 23, 2022 01:57
Solution for parquet tiles coding exercise
// 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>
@StephanTLavavej
StephanTLavavej / videos.md
Last active June 30, 2024 20:13
C++ Videos by Stephan T. Lavavej