Delete python_symb directory
This commit is contained in:
parent
7e1ff3b6b2
commit
299fc1a058
16 changed files with 0 additions and 565 deletions
|
@ -1,14 +0,0 @@
|
|||
from __future__ import annotations
|
||||
from typing import *
|
||||
|
||||
|
||||
def gcd(a, b):
|
||||
|
||||
if b > a:
|
||||
return gcd(b, a)
|
||||
|
||||
if b == 0:
|
||||
return a
|
||||
|
||||
return gcd(b, a % b)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue