Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
19
Task/Modular-inverse/TypeScript/modular-inverse.ts
Normal file
19
Task/Modular-inverse/TypeScript/modular-inverse.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
// Modular inverse
|
||||
|
||||
function modInv(e: number, t: number): number {
|
||||
var d = 0;
|
||||
if (e < t) {
|
||||
var count = 1;
|
||||
var bal = e;
|
||||
do {
|
||||
var step = Math.floor((t - bal) / e) + 1;
|
||||
bal += step * e;
|
||||
count += step;
|
||||
bal -= t;
|
||||
} while (bal != 1);
|
||||
d = count;
|
||||
}
|
||||
return d;
|
||||
}
|
||||
|
||||
console.log(`${modInv(42, 2017)}`); // 1969
|
||||
Loading…
Add table
Add a link
Reference in a new issue