chasestarr / karatsuba

Karatsuba multiplication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Karatsuba (Karatsuba multiplication algorithm)

GoDoc

import (
  "fmt"

  "github.com/chasestarr/karatsuba"
)

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

About

Karatsuba multiplication


Languages

Language:Go 100.0%