lprimeroo / DSA

Implementations of various data structures and algorithms.
MIT License
106 stars 179 forks source link

Added Python implementation of karatsuba multiplication #123

Closed Anirudh-Swaminathan closed 8 years ago

Anirudh-Swaminathan commented 8 years ago

Added the file for Karatsuba multiplication in Python. Input is any 2 integers to be multiplied, using a recursive function. Python 2.7 is used.