To run - "sbt run" To test - "sbt test"
Commands are as follows:
-
add [SKU] - To add an item / items to your basket Seperate sku's with a space e.g. "add A B C"
-
price - Adds up the current contents of your basket
-
clear - Clears you basket
-
list - Lists all the items in your basket
-
quit - Leaves the current checkout transaction
Implement the code for a supermarket checkout that calculates the total price of a number of items. In a normal supermarket, things are identified using Stock Keeping Units, or SKUs. In our store, we’ll use individual letters of the alphabet (A, B, C, and so on as the SKUs). Our goods are priced individually. In addition, some items are multi-priced: buy n of them, and they’ll cost you y. For example, item ‘A’ might cost 50 pence individually, but this week we have a special offer: buy three ‘A’s and they’ll cost you £1.30. In fact this week’s prices are:
Item | Unit Price | Special Price |
---|---|---|
A | 50 | 3 for 130 |
B | 30 | 2 for 45 |
C | 20 | |
D | 15 |
Our checkout accepts items in any order, so that if we scan a B, an A, and another B, we’ll recognise the two B’s and price them at 45 (for a total price so far of 95). Because the pricing changes frequently, we need to be able to pass in a set of pricing rules each time we start handling a checkout transaction.
Please note: Offers can only be accepted in the format shown above in the examples and below:
[ quantity ] "for" [ price ]
quantity to be a whole number that is bigger than 0 price to be a positive integer - will accept decimals