Skip to content

Commit

Permalink
Update difference_of_squares.clj
Browse files Browse the repository at this point in the history
The definition of the `difference` function must come last due to Clojure's single-pass compiler.
  • Loading branch information
dsletten authored Dec 10, 2024
1 parent 9f28dd4 commit 2a3732b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
(ns difference-of-squares)

(defn difference [] ;; <- arglist goes here
(defn sum-of-squares [] ;; <- arglist goes here
;; your code goes here
)

(defn sum-of-squares [] ;; <- arglist goes here
(defn square-of-sum [] ;; <- arglist goes here
;; your code goes here
)

(defn square-of-sum [] ;; <- arglist goes here
(defn difference [] ;; <- arglist goes here
;; your code goes here
)

0 comments on commit 2a3732b

Please sign in to comment.