Skip to content

Instantly share code, notes, and snippets.

@ar-pa
ar-pa / BigInt.cpp
Last active July 11, 2024 20:32
bignum class for C++
// In the name of Allah.
// We're nothing and you're everything.
// Ya Ali!
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e2 + 14, lg = 15;