Skip to content

Instantly share code, notes, and snippets.

View funcdfs's full-sized avatar

funcdfs funcdfs

View GitHub Profile
@funcdfs
funcdfs / dbg.h
Last active May 22, 2024 17:44
algo/dbg.h
#include <vector>
#include <iostream>
#include <tuple>
#include <bitset>
template <typename A, typename B>
std::string to_string(std::pair<A, B> p);
template <typename A, typename B, typename C>
std::string to_string(std::tuple<A, B, C> p);