Skip to content

Instantly share code, notes, and snippets.

View kunalchandan's full-sized avatar
🍌
There is only one, and I am he.

Kunal Chandan kunalchandan

🍌
There is only one, and I am he.
View GitHub Profile
@kunalchandan
kunalchandan / markovChainsNames.java
Created March 14, 2018 05:07
Markov chains name generator complete class file.
import java.io.*;
import java.util.*;
public class markovChainsNames {
static ArrayList<String> names = new ArrayList<String>();
static ArrayList<Integer> ncounts = new ArrayList<Integer>();
static ArrayList<Integer> nlens = new ArrayList<Integer>();
static int alphaLen = 27;