Skip to content

Commit

Permalink
update function template
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Jan 21, 2025
1 parent f52df9e commit 613f29b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions exercises/practice/hamming/src/hamming.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
(ns hamming)

(defn distance [strand1 strand2] ; <- arglist goes here
;; your code goes here
(defn distance
"Returns the hamming distance between two DNA strands."
[strand1 strand2]
;; function body
)

0 comments on commit 613f29b

Please sign in to comment.