Skip to content

Instantly share code, notes, and snippets.

View theProgrammerDavid's full-sized avatar

David Velho theProgrammerDavid

View GitHub Profile
@theProgrammerDavid
theProgrammerDavid / cheatsheet.cpp
Created May 22, 2020 08:54 — forked from satwikkansal/cheatsheet.cpp
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@theProgrammerDavid
theProgrammerDavid / cheatsheet.cpp
Created May 22, 2020 08:54 — forked from satwikkansal/cheatsheet.cpp
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.