Commit eb0f73a0 by Dave St.Germain

Fixes reading order in hint, by removing unnecessary lists.

LMS-1731
parent 448e0697
...@@ -99,11 +99,9 @@ print "Lowest Payment:", round(payment, 2) ...@@ -99,11 +99,9 @@ print "Lowest Payment:", round(payment, 2)
<p><b>Note:</b> The automated tests are lenient - if your answers are off by a few cents <p><b>Note:</b> The automated tests are lenient - if your answers are off by a few cents
in either direction, your code is OK. </p> in either direction, your code is OK. </p>
<p>Test Cases:</p> <p>Test Cases:</p>
<ol>
<li>
<p> <p>
<pre> <pre>
<code> <code>
Test Case 1: Test Case 1:
balance = 320000 balance = 320000
annualInterestRate = 0.2 annualInterestRate = 0.2
...@@ -111,14 +109,12 @@ print "Lowest Payment:", round(payment, 2) ...@@ -111,14 +109,12 @@ print "Lowest Payment:", round(payment, 2)
Result Your Code Should Generate: Result Your Code Should Generate:
------------------- -------------------
Lowest Payment: 29157.09 Lowest Payment: 29157.09
</code> </code>
</pre> </pre>
</p> </p>
</li>
<li>
<p> <p>
<pre> <pre>
<code> <code>
Test Case 2: Test Case 2:
balance = 999999 balance = 999999
annualInterestRate = 0.18 annualInterestRate = 0.18
...@@ -126,11 +122,9 @@ print "Lowest Payment:", round(payment, 2) ...@@ -126,11 +122,9 @@ print "Lowest Payment:", round(payment, 2)
Result Your Code Should Generate: Result Your Code Should Generate:
------------------- -------------------
Lowest Payment: 90325.07 Lowest Payment: 90325.07
</code> </code>
</pre> </pre>
</p> </p>
</li>
</ol>
</section> </section>
</div> </div>
<div class="collapsible"> <div class="collapsible">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment