Sharkey/src/web/app/common/scripts/gcd.ts

3 lines
66 B
TypeScript
Raw Normal View History

2017-02-16 10:20:45 +02:00
const gcd = (a, b) => !b ? a : gcd(b, a % b);
2017-03-18 13:05:11 +02:00
export default gcd;