Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Jun 24, 2018
1 parent d44c33f commit f291916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/mirror-reflection.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def gcd(a, b):
while b:
a, b = b, a % b
return a

lcm = p*q // gcd(p, q)
# let a = lcm / p, b = lcm / q
if lcm // p % 2 == 1:
Expand Down

0 comments on commit f291916

Please sign in to comment.