Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chasestarr/karatsuba

Karatsuba multiplication
https://github.com/chasestarr/karatsuba

algorithm bignum go karatsuba multiplication

Last synced: about 1 month ago
JSON representation

Karatsuba multiplication

Awesome Lists containing this project

README

        

## Karatsuba ([Karatsuba](https://en.wikipedia.org/wiki/Karatsuba_algorithm) multiplication algorithm)

[![GoDoc](https://godoc.org/github.com/chasestarr/karatsuba?status.svg)](https://godoc.org/github.com/chasestarr/karatsuba)

```go
import (
"fmt"

"github.com/chasestarr/karatsuba"
)

func main() {
product := karatsuba.Multiply("1234" "5678")
fmt.Println(product) // "7006652"
}
```