2nd assert is for greater than or equal to, not "more than" like it says in the instructions

This commit is contained in:
Kody Low 2022-08-24 08:33:17 -07:00
parent f6a37e28ba
commit d6e26bb350
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
// - If
// Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy
// more than 40 at once, each apple only costs 1! Write a function that calculates
// 40 or more at once, each apple only costs 1! Write a function that calculates
// the price of an order of apples given the quantity bought. No hints this time!
// I AM NOT DONE