59606162636465666768697071
public void init(int theK) { this.k = theK; this.spamBag = new BagOfWords(this.k); this.hamBag = new BagOfWords(this.k); this.totalBag = new BagOfWords(this.k); for(String line: SPAM_DATA) { spamBag.process(line); totalBag.process(line);