Skip to content

Instantly share code, notes, and snippets.

@nathanPro
Created June 14, 2016 00:03
Show Gist options
  • Save nathanPro/d062c154a062692ad5e6ad84b35aa6bf to your computer and use it in GitHub Desktop.
Save nathanPro/d062c154a062692ad5e6ad84b35aa6bf to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll;
template<typename T> inline void _max(T& a, T b){ a = max(a,b); }
template<typename T> inline void _min(T& a, T b){ a = min(a,b); }
int main(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment