* Moore's Voting Algorithm 18/5/2021 8:08
Moore's Voting Algorithm: Given an integer array of length N. Check if there exists an integer which occurs more than floor(N/2) times. If there is no such element, print THERE IS NO MAJORITY ELEMENT..
* Kadane’s algorithm 18/5/2021 8:05
Kadane’s algorithm is used to find Largest Sum Contiguous Subarray.
* Sieve of Eratosthenes 18/5/2021 1:55
The sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to any given limit.