Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chasestarr/karatsuba
Karatsuba multiplication
https://github.com/chasestarr/karatsuba
algorithm bignum go karatsuba multiplication
Last synced: 12 days ago
JSON representation
Karatsuba multiplication
- Host: GitHub
- URL: https://github.com/chasestarr/karatsuba
- Owner: chasestarr
- Created: 2017-01-18T00:28:46.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-22T07:19:12.000Z (about 3 years ago)
- Last Synced: 2024-11-13T08:05:50.416Z (2 months ago)
- Topics: algorithm, bignum, go, karatsuba, multiplication
- Language: Go
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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"
}
```