Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
C Plus Plus | 24,554 | 2 days ago | 32 | mit | C++ | |||||
Collection of various algorithms in mathematics, machine learning, computer science and physics implemented in C++ for educational purposes. | ||||||||||
C | 16,307 | a day ago | 19 | gpl-3.0 | C | |||||
Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes. | ||||||||||
Computer Science Resources | 2,096 | 9 days ago | 5 | |||||||
A list of resources in different fields of Computer Science | ||||||||||
Ml Foundations | 1,705 | 7 months ago | mit | Jupyter Notebook | ||||||
Machine Learning Foundations: Linear Algebra, Calculus, Statistics & Computer Science | ||||||||||
Self Learning Computer Science | 1,682 | 4 months ago | ||||||||
the resources I use to learn computer science in my spare time | ||||||||||
Teaching | 802 | 6 months ago | gpl-3.0 | Mathematica | ||||||
Teaching Materials for Dr. Waleed A. Yousef | ||||||||||
Ml University | 616 | 3 months ago | ||||||||
Machine Learning Open Source University | ||||||||||
Axelrod | 615 | 16 days ago | 1 | January 31, 2019 | 56 | other | Python | |||
A research tool for the Iterated Prisoner's Dilemma | ||||||||||
Paperlib | 467 | 4 days ago | 18 | gpl-3.0 | TypeScript | |||||
An open-source academic paper management tool. | ||||||||||
Learn Something Every Day | 409 | 2 months ago | 4 | CSS | ||||||
📝 A compilation of everything that I learn; Computer Science, Software Development, Engineering, Math, and Coding in General. Read the rendered results here -> |
Integers for JavaScript. See docs. Parent is @aureooms/js-algorithms.
import { ZZ } from '@aureooms/js-integer' ;
const a = ZZ.from( '2983928392839289387' ) ;
const b = ZZ.from( '-302940923028393' ) ;
a.mul( b ).toString( ) ; // '-903954021577363596419770144565091'
The current underlying implementation uses big endian order. There is no alternative for the moment.