Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Whitespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
petercollingridge committed Feb 20, 2013
1 parent e85f8b9 commit 344207c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/integer_sums.html
Expand Up @@ -28,7 +28,7 @@
<var id="SEQUENCE">
(function() {
var sequence = "x";
for (var i = 1; i &lt;SEQ_LENGTH; i++) {
for (var i = 1; i &lt; SEQ_LENGTH; i++) {
sequence += "+ (x + " + (i * DIFFERENCE) + ")";
}
return sequence;
Expand All @@ -53,7 +53,7 @@
<p><code><var>SEQUENCE</var> = <var>SUM</var></code></p>
</div>
<p><code><var>SEQ_LENGTH</var>x + <var>C</var>= <var>SUM</var></code></p>
<p><code><var>SEQ_LENGTH</var>x = <var>SUM-C</var></code></p>
<p><code><var>SEQ_LENGTH</var>x = <var>SUM - C</var></code></p>
<p><code>x = <var>FIRST_NUM</var></code></p>
<div data-if="FIRST_NUM === ANSWER">
<p>Thus, the first number is <code><var>ANSWER</var></code>.</p>
Expand Down

0 comments on commit 344207c

Please sign in to comment.