Skip to content

Instantly share code, notes, and snippets.

View ankitksh81's full-sized avatar
:octocat:
Focusing

Ankit Kumar ankitksh81

:octocat:
Focusing
View GitHub Profile
<div class="scroll-wrapper"><a href="#scroll-here"><i class="scroll fas fa-arrow-down"></i></a>
<style>
.scroll-wrapper {text-align:center;}
.scroll {
@ankitksh81
ankitksh81 / Template.cpp
Created March 28, 2021 06:16
Template for Competitive Programming Contests. (Still under work)
#include <bits/stdc++.h>
using namespace std;
#define goog for(int i = 1; i <= t; i++){ cout << "Case #" << i << ": "; solve(); cout << "\n"; }
#define nogoog while(t--){ solve(); }
#define ll long long
#define fo(a, b) for(int i = a; i < b; i++)
#define all(x) x.begin(), x.end()
void solve(){
}