Skip to content

Instantly share code, notes, and snippets.

@alisolanki
Last active April 24, 2020 23:19
Show Gist options
  • Select an option

  • Save alisolanki/8ce20bb0c465bdd8c121a0ad9f3b8214 to your computer and use it in GitHub Desktop.

Select an option

Save alisolanki/8ce20bb0c465bdd8c121a0ad9f3b8214 to your computer and use it in GitHub Desktop.
C++ template
//Author: Mohd. Ali Solanki
#include <bits/stdc++.h>
#define MOD 1000000007
using namespace std;
typedef long long ll;
typedef unsigned long long int ull;
int main(){
int T;
scanf("%d", &T);
while(T--){
int N;
scanf("%d", &N);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment