-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BookStore] Inconsistent price per book? #696
Comments
Confusingly, the prices are in cents, not dollars. The upstream problem specification indicates that floats should not be used and a language-appropriate fixed point format should be used instead. I'm not aware of any built-in support so using an integer representation of price as cents is the way we went. |
Thanks for the explanation. Should we change the dollars in instruction to cents, or just leave it as it is? |
We are not going to change the instructions, what can be done is an append. |
Append as in mentioning the specs use cent instead of dollar at the end of instructions? |
Using an append file, e.g: https://github.com/exercism/crystal/blob/main/exercises/practice/roman-numerals/.docs/instructions.append.md |
Ah, didn't know such file exists. If we were to add an append file, mind if I open a PR for that? |
Sure go ahead, sorry for being slow to respond. |
Exercise's instructions said book price is
$8
, though it seems like book price in specs are$800
, is it intentional?The text was updated successfully, but these errors were encountered: