Skip to content

Commit 6b5ce96

Browse files
author
William Chanrico
authored
Update README.md
1 parent 621fde5 commit 6b5ce96

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# biginteger-cpp
2-
C++ Big Integer/Big Number class (coded with competitive programming problems in mind)
2+
3+
Big integer class in c++ (coded with competitive programming problems in mind)
4+
5+
## Prototypes
36

47
```c++
58
BigInt(string x);
@@ -24,7 +27,7 @@ string convertToBase(int base);
2427
friend ostream &operator <<(ostream &os, const BigInt &x);
2528
```
2629
27-
## Usage
30+
## Example
2831
### Compute ```num % mod``` in base 19
2932
```c++
3033
int base = 19;

0 commit comments

Comments
 (0)