I hereby claim:
- I am jaffreyjoy on github.
- I am jaffreyjoy (https://keybase.io/jaffreyjoy) on keybase.
- I have a public key whose fingerprint is 4F88 04B5 D73A D212 014A FAE7 0BCD D355 C572 11FB
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include<iostream> | |
using namespace std; | |
void print_arr(int* a, int l, int r){ | |
for(int i=l; i<=r; i++) | |
cout << a[i] << " "; | |
cout << endl; | |
} |
#include<iostream> | |
#include<string> | |
#include<stdexcept> | |
#include<typeinfo> | |
using namespace std; | |
#define ull unsigned long long | |
#define ll long long | |
#define INITIAL_CAPACITY 2 | |
#define CAPACITY_SCALING_FACTOR 2 |