Add a short description

This commit is contained in:
Luke Murphy 2020-07-09 10:12:54 +02:00
parent febc6f0fca
commit f52270a43d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,11 @@
## Varints, a method of serializing integers using one or more bytes
> Generally in Python, integers are stored as long meaning that they will use
> at least 32 bits. When storing many numbers which do not require 32 bits,
> this would seem to be significantly wasteful; variable length representation
> should be able to assist in such cases.
## Install
```sh