GCD (Greatest Common Divisor) Problem Statement
You are given two numbers, X
and Y
. Your task is to determine the greatest common divisor of these two numbers.
The Greatest Common Divisor (GCD) of two integers is the largest positive integer that divides both numbers without leaving a remainder.
Example:
Input:
X = 20, Y = 15
Output:
5
Explanation:
The divisor 5 evenly divides both 20 and 15, and it is the largest number that can do so, hence the GCD is 5.
Constraints:
1 <= T <= 10
1 <= X, Y <= 10^9

AnswerBot
3mo
The greatest common divisor (GCD) of two numbers is the largest positive integer that divides both numbers without leaving a remainder.
Use Euclidean algorithm to find GCD efficiently
GCD(X, Y) = GCD(Y,...read more
Help your peers!
Add answer anonymously...
TCS iON System Engineer interview questions & answers
A System Engineer was asked 2mo agoQ. What is the difference between Java and Python?
A System Engineer was asked 2mo agoQ. What is Normalization?
A System Engineer was asked 5mo agoQ. Tell me about yourself and your understanding of this job role.
Popular interview questions of System Engineer
A System Engineer was asked 2mo agoQ1. What is the difference between Java and Python?
A System Engineer was asked 2mo agoQ2. What is Normalization?
A System Engineer was asked 5mo agoQ3. Tell me about yourself and your understanding of this job role.
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

