Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jfitzsimmons/karatsuba-ts-ember
The Karatsuba Method - How to Multiply Big Numbers Fast
https://github.com/jfitzsimmons/karatsuba-ts-ember
calculator educational ember glimmer-component handlebars karatsuba typescript
Last synced: 24 days ago
JSON representation
The Karatsuba Method - How to Multiply Big Numbers Fast
- Host: GitHub
- URL: https://github.com/jfitzsimmons/karatsuba-ts-ember
- Owner: jfitzsimmons
- Created: 2022-07-25T12:13:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T19:48:52.000Z (over 1 year ago)
- Last Synced: 2024-10-15T06:41:28.484Z (2 months ago)
- Topics: calculator, educational, ember, glimmer-component, handlebars, karatsuba, typescript
- Language: Handlebars
- Homepage: https://jfitzsimmons.github.io/karatsuba-ts-ember/
- Size: 2.79 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Karatsuba Calculator
Coded with Ember, Typscript and Handlebars
[![Karatsuba Calculator Preview Image](https://raw.githubusercontent.com/jfitzsimmons/karatsuba-ts-ember/main/preview.png)](https://jfitzsimmons.github.io/karatsuba-ts-ember/ 'Karatsuba Calculator Link')
**Explanation**
As numbers increase in size, the Karatsuba method can be used repeatedly, breaking large numbers into small pieces to save an increasing number of single-digit multiplications.## Prerequisites
You will need the following things properly installed on your computer.
- [Git](https://git-scm.com/)
- [Node.js](https://nodejs.org/) (with npm)
- [Ember CLI](https://cli.emberjs.com/release/)## Installation
- `git clone ` this repository
- `cd karatsuba-ts-ember`
- `npm install`## Running / Development
- `npm run start`
- Visit your app at [http://localhost:4200](http://localhost:4200).
- Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).## Acknowledgments
- This project is inspired from the graphics of [Lucy Reading-Ikkanda / Quanta Magazine.](https://www.quantamagazine.org/mathematicians-discover-the-perfect-way-to-multiply-20190411/)