Skip to content

Instantly share code, notes, and snippets.

@otaruMendez
Created February 23, 2019 20:55
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/d178792276da05fabcd4287cf6a89e25 to your computer and use it in GitHub Desktop.
Save otaruMendez/d178792276da05fabcd4287cf6a89e25 to your computer and use it in GitHub Desktop.
PizzaCutter Class for the HashCode Pizza Question
public class PizzaCutter {
Pizza pizza;
ArrayList<Slice> cutSlices = new ArrayList<>();
public PizzaCutter (Pizza pizza) {
this.pizza = pizza;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment