From 37333a186c08fa9458bb22133f9f3bf9b693c309 Mon Sep 17 00:00:00 2001 From: krisstallenberg <39557024+krisstallenberg@users.noreply.github.com> Date: Thu, 7 Sep 2023 19:53:56 +0200 Subject: [PATCH] Fix spelling error --- Assignments/ASSIGNMENT-1.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assignments/ASSIGNMENT-1.ipynb b/Assignments/ASSIGNMENT-1.ipynb index a98844ab1..f6c77e5e3 100644 --- a/Assignments/ASSIGNMENT-1.ipynb +++ b/Assignments/ASSIGNMENT-1.ipynb @@ -136,7 +136,7 @@ "\n", "Can you use the modulus operator you just learned about to solve the following task? Imagine you want to help cashiers to return the change in a convenient way. This means you do not want to return hands full of small coins, but rather use bills and as few coins as possible. \n", "\n", - "Write code that classifies a given amount of money into smaller monetary units. Given a specific amout of dollars, your program should report the maximum number of dollar bills, quarters, dimes, nickels, and pennies. \n", + "Write code that classifies a given amount of money into smaller monetary units. Given a specific amount of dollars, your program should report the maximum number of dollar bills, quarters, dimes, nickels, and pennies. \n", "\n", "Set the amount variable to 11.67. You code should output a report listing the monetary equivalent in dollars, quarters, dimes, nickels, and pennies (one quarter is equivalent to 25 cents; one dime to 10 cents; one nickle to 5 cents and a pennie to 1 cent). Your program should report the maximum number of dollars, then the number of quarters, dimes, nickels, and pennies, in this order, to result in the minimum number of coins. Here are the steps in developing the program:\n", "\n",