89909192939495969798
private class CellFromPositionFactory { public Cell determineCellAt(Position position) { for (LiveCell currentCell : liveCells) { if(currentCell.isAtPosition(position)) { return new LiveCell(position); } } return new DeadCell(position); }