Skip to content

Commit f1ad13e

Browse files
Update GreatestCommonDivisor.py
1 parent fa609d6 commit f1ad13e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: Milestone 2/Test1/GreatestCommonDivisor.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ def findGcd(x, y):
1515
x, y = y, x % y
1616
return x
1717

18+
# this part of the code not used in the coding ninja compiler.
1819
t=int(input())
1920
while t!=0:
2021
x,y=input().split()
2122
x,y=int(x),int(y)
2223
print(findGcd(x,y))
23-
t=t-1
24+
t=t-1

0 commit comments

Comments
 (0)