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 <stdexcept> | |
| #include <string> | |
| #include <typeinfo> | |
| using ull = unsigned long long; | |
| using ll = long long; | |
| constexpr ull kInitialCapacity = 2; | |
| constexpr ull kCapacityScalingFactor = 2; |