Skip to content

Instantly share code, notes, and snippets.

View shubhendrapatel's full-sized avatar
🙏

Shubham Patel shubhendrapatel

🙏
View GitHub Profile
@shubhendrapatel
shubhendrapatel / generate_primes.java
Created January 5, 2017 12:18
Generating primes efficiently in java
import java.util.*;
class finding_prime{
//For storing primes
static ArrayList<Integer> primes = new ArrayList<>();
//Checking number is prime or not
static boolean isPrime(Integer number){
//for itrating through primes list
ListIterator theItretor = primes.listIterator();