exercism-common-lisp/pizza-pi/HINTS.md
Adam Cooper 577860559e Initial commit
This "initial" commit occurs after five exercises have been completed
2025-01-23 19:43:42 -05:00

1.4 KiB
Raw Blame History

Hints

General

  • It might be useful to have a list of all of the numeric operations in Lisp. you can find a full list here

1. A Dough Ratio

2. A Splash of Sauce

3. Some Cheese, Please

4. A Fair Share

  • This part requires using a function you may not have come across before, the modulo function (mod). This function gives you the remainder of the division between two numbers.
  • For comparing the result of mod to another number, this page of comparison operators.