Skip to content

Instantly share code, notes, and snippets.

@sbansal1999
sbansal1999 / GSoC_2023_with_Zulip.md
Last active August 28, 2023 14:02
This document describes all the work that I completed in Zulip as part of Google Summer of Code 2023.

Google Summer of Code '23 with Zulip

@sbansal1999
sbansal1999 / code.cpp
Last active February 21, 2023 13:14
CPP Template that I use for CP
#include <bits/stdc++.h>
using namespace std;
#define all(v) v.begin(), v.end()
#define sz(v) (int)v.size()
#define MOD 1000000007
#define MOD1 998244353
#define nline "\n"
#define pb push_back
#define ppb pop_back