Skip to content

Instantly share code, notes, and snippets.

View Felipefams's full-sized avatar
💻
Coding

Felipe Felipefams

💻
Coding
View GitHub Profile
@Felipefams
Felipefams / template.cpp
Created January 5, 2023 02:21
Competitive Programming Template
#include <bits/stdc++.h>
using namespace std;
//vrum vrum
#define fast_io ios_base::sync_with_stdio(0); cin.tie(0);
//constants
#define endl "\n"
#define PI 3.1415926535897932384626433832795
#define MOD 1000000007
#define exp 1e9
#define imax INT_MAX