adding univeristy latex files

This commit is contained in:
2020-10-31 22:54:46 +04:00
commit fe5006a953
23 changed files with 539 additions and 0 deletions

10
2_main_body/code/gcd.py Normal file
View File

@@ -0,0 +1,10 @@
import library
# GCD of a and b
def my_gcd(a, b):
t = b
while not b == 0:
t = b
b = a % b
a = t
return a