Advertisement
nq1s788

нод алгоритм евклида

Apr 2nd, 2025
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. def gcd(x, y):
  2.     if min(x, y) == 0:
  3.         return max(x, y)
  4.     return gcd(max(x, y) % min(x, y), min(x, y))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement