All working, able to be built to .jar

This commit is contained in:
2021-11-12 10:41:44 -06:00
parent d39fdbee3b
commit e15cbc6672
21 changed files with 1003 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
import java.util.List;
public class CellSample {
private List<Integer[]> cells;
public CellSample(List<Integer[]> cells){
this.cells = cells;
}
public List<Integer[]> getCells(){
return cells;
}
public Integer population(){
return cells.size();
}
}