Skip to content

Instantly share code, notes, and snippets.

@lunayach
lunayach / cheatsheet.cpp
Created August 15, 2018 17:27 — 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.