Skip to content

Commit

Permalink
update starter file
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Nov 2, 2024
1 parent 9ebdb38 commit 24310b1
Showing 1 changed file with 15 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
(ns difference-of-squares)

(defn difference [] ;; <- arglist goes here
;; your code goes here
)
(defn square-of-sum
"Returns the square of the sum of the numbers up to the given number"
[n]
;; function body
)

(defn sum-of-squares [] ;; <- arglist goes here
;; your code goes here
)
(defn sum-of-squares
"Returns the sum of the squares of the numbers up to the given number"
[n]
;; function body
)

(defn square-of-sum [] ;; <- arglist goes here
;; your code goes here
)
(defn difference
"Returns the difference between the square of the sum of numbers up to a given number and the sum of the squares of those numbers"
[n]
;; function body
)

0 comments on commit 24310b1

Please sign in to comment.