Skip to content

Instantly share code, notes, and snippets.

View jinmingyi1998's full-sized avatar
🎯
Focusing

Jimmy jinmingyi1998

🎯
Focusing
View GitHub Profile
@jinmingyi1998
jinmingyi1998 / BigInteger.cpp
Last active August 20, 2017 10:09
BigInteger
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#include <string.h>
#include <vector>
using namespace std;
struct BigInteger
{
static const int BASE = 10;