Skip to content

Instantly share code, notes, and snippets.

View dducws's full-sized avatar

Duc dducws

  • 09:15 (UTC +02:00)
View GitHub Profile
@dducws
dducws / debugging.h
Last active July 31, 2023 07:40 — forked from SansPapyrus683/debugging.h
A useful debugging template for C++.
#include <iostream>
#include <vector>
#include <deque>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <array>
#define all(x) begin(x), end(x)