Created
October 12, 2022 14:04
-
-
Save okash1n/3ed9d6195a5404041dfd4bde663e3ca3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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