Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created May 9, 2021 10:05
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 jasongorman/9d6985a48d589f2601e063a1664a76c9 to your computer and use it in GitHub Desktop.
Save jasongorman/9d6985a48d589f2601e063a1664a76c9 to your computer and use it in GitHub Desktop.
public class CarpetQuote {
public double calculate(double pricePerSqM,
Shape shape) {
return Math.ceil(shape.getArea() * pricePerSqM);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment