@@ -76,15 +76,15 @@ A brief explanation to each of the following topics will be added soon, hopefull
7676
7777### Math
7878- [ Basic Discrete Math & Modular Arithmetics] ( https://github.com/OmarBazaraa/Competitive-Programming/tree/master/math )
79- - [Greatest Common Divisor (GCD)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L8 )
80- - [Least Common Multiple (LCM)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L27 )
81- - [Bézout's Coefficients (using extended Euclid's method)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L33 )
82- - [Fast Power](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L50 )
83- - [Modular Inverse](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L80 )
84- - [Combinations (nCr)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L88 )
85- - [Pascal Triangle](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L103 )
86- - [Check Integer Primality](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L149 )
87- - [Check Integer Primality using Miller Rabin](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L113 )
79+ - [Greatest Common Divisor (GCD)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L13 )
80+ - [Least Common Multiple (LCM)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L31 )
81+ - [Bézout's Coefficients (using extended Euclid's method)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L39 )
82+ - [Fast Power](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L55 )
83+ - [Modular Inverse](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L85 )
84+ - [Combinations (nCr)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L94 )
85+ - [Pascal Triangle](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L108 )
86+ - [Check Integer Primality](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L116 )
87+ - [Check Integer Primality using Miller Rabin](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L149 )
8888- [Generate Prime Numbers (using Sieve of Eratosthenes' algorithm)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L181)
8989- [Generate Divisors (single/bulk operation)](https://github.com/OmarBazaraa/Competitive-Programming/blob/master/math/math.cpp#L198)
9090- All divisors
0 commit comments