なんかもうめっちゃ変えた
This commit is contained in:
parent
d9ab03f086
commit
b75184ec8e
946 changed files with 41219 additions and 28839 deletions
3
packages/backend/src/misc/prelude/math.ts
Normal file
3
packages/backend/src/misc/prelude/math.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export function gcd(a: number, b: number): number {
|
||||
return b === 0 ? a : gcd(b, a % b);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue