ShivamSinghal1 / Competitive-Programming-Algorithms

The purpose of this repository is to get all the Algorithms required for Competitive Programming at one place. This will be very helpful. Also one can contribute to this repository and learn something from this.
https://codedigger.tech
21 stars 48 forks source link

GCD #18

Closed subhadeeppaul closed 4 years ago

subhadeeppaul commented 4 years ago

Actually, there are lots of algorithms to find gcd of two numbers. But in most of them, the execution time will be the same.

But in the Euclidean algorithm, the execution time will be the minimum.

ShivamSinghal1 commented 4 years ago

Add cpp file also include this in Maths section

subhadeeppaul commented 4 years ago

Yes, I have included my CPP file in Maths section.