Skip to content

Instantly share code, notes, and snippets.

View manishjoshi394's full-sized avatar
๐ŸŽ“
Attending College.

Manish Joshi manishjoshi394

๐ŸŽ“
Attending College.
View GitHub Profile
@manishjoshi394
manishjoshi394 / BigInt.cpp
Last active November 25, 2019 19:56 — forked from ar-pa/BigInt.cpp
bignum class for C++
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
/*
######################################################################
####################### THE BIG INT ##########################
*/
const int base = 1000000000;
const int base_digits = 9;