Skip to content

Instantly share code, notes, and snippets.

@okash1n
Created October 12, 2022 14:04
Show Gist options
  • Save okash1n/3ed9d6195a5404041dfd4bde663e3ca3 to your computer and use it in GitHub Desktop.
Save okash1n/3ed9d6195a5404041dfd4bde663e3ca3 to your computer and use it in GitHub Desktop.
#include <iostream> // cout, endl, cin
#include <string> // string, to_string, stoi
#include <vector> // vector
#include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound
#include <utility> // pair, make_pair
#include <tuple> // tuple, make_tuple
#include <cstdint> // int64_t, int*_t
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <cctype> // isupper, islower, isdigit, toupper, tolower
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment