Skip to content

Instantly share code, notes, and snippets.

View AbdullahAlabd's full-sized avatar
🤓
Learning

Abdullah Alabd AbdullahAlabd

🤓
Learning
View GitHub Profile
@AbdullahAlabd
AbdullahAlabd / BigInt.cpp
Created March 15, 2018 09:28 — forked from ar-pa/BigInt.cpp
bignum class for C++
/*
######################################################################
####################### THE BIG INT ##########################
*/
const int base = 1000000000;
const int base_digits = 9;
struct bigint {
vector<int> a;
int sign;
/*<arpa>*/