Skip to content

Commit

Permalink
Merge pull request #6 from gregoriokusowski/sum-problem
Browse files Browse the repository at this point in the history
Fixing cubes example
  • Loading branch information
marshallshen committed Jun 7, 2015
2 parents 34e3335 + a75449c commit 5f5e3dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clojure_katas/procedural_sum.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
y: end integer
output: return sum of the cube of each integer from x to y
example: (sum-cubes 1, 4) > 1 + 2 + 3 + 4 = 10"
[x y])
example: (sum-cubes 1, 4) > 1 + 8 + 27 + 64 = 100"
[x y])

0 comments on commit 5f5e3dc

Please sign in to comment.