Skip to content

Instantly share code, notes, and snippets.

View skccharan's full-sized avatar
👨‍💻
It's not a Bug, It's a Feature

Kalicharan S skccharan

👨‍💻
It's not a Bug, It's a Feature
View GitHub Profile
@skccharan
skccharan / cheatsheet.cpp
Created July 2, 2020 16:14 — 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.