Skip to content

Instantly share code, notes, and snippets.

View dingusagar's full-sized avatar

Dingu Sagar dingusagar

View GitHub Profile
@dingusagar
dingusagar / cheatsheet.cpp
Created October 19, 2018 04:29 — 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>
#include<tuple> // support from c++11 only. use the option -std=c++11 for g++ if there is any problem
/*