Skip to content

Instantly share code, notes, and snippets.

@otaruMendez
Last active February 23, 2019 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save otaruMendez/00c2c383f4889718da3b73cfff81a905 to your computer and use it in GitHub Desktop.
Save otaruMendez/00c2c383f4889718da3b73cfff81a905 to your computer and use it in GitHub Desktop.
Simulator Class for the HashCode Practice Pizza Question
public class Simulator {
private String fileName;
private Pizza pizza;
private PizzaCutter pizzaCutter;
public Simulator (String fileName) {
this.fileName = fileName;
}
public void parseInput () {
}
public void simulate() {
}
public void printOutput () {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment