An application to calculate prime factors using Sieve of Eratosthenes.
- Can calculate prime factors upto 10,000,000 limit.
- pre-computation is used that is calculation of prime factor is done in very few seconds.
- time complexity - O(n log log n) {assuming the worst case}
- prime factors are displayed in three different styles, as shown in image file
- a clean UI is presented for the application