Skip to content

Instantly share code, notes, and snippets.

View ConanCode96's full-sized avatar
🏠
Working from home

Hossam Doma ConanCode96

🏠
Working from home
View GitHub Profile
@ConanCode96
ConanCode96 / BigInt.cpp
Created April 28, 2018 22:47 — 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>*/