Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function gcd(a,b) {
- a = Math.abs(a);
- b = Math.abs(b);
- if (b > a) {var temp = a; a = b; b = temp;}
- while (true) {
- if (b == 0) return a;
- a %= b;
- if (a == 0) return b;
- b %= a;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment