https://github.com/chasestarr/karatsuba
Karatsuba multiplication
https://github.com/chasestarr/karatsuba
algorithm bignum go karatsuba multiplication
Last synced: 4 months ago
JSON representation
Karatsuba multiplication
- Host: GitHub
- URL: https://github.com/chasestarr/karatsuba
- Owner: chasestarr
- Created: 2017-01-18T00:28:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-22T07:19:12.000Z (over 3 years ago)
- Last Synced: 2025-01-12T15:35:24.565Z (5 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)
[](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"
}
```