9 lines
213 B
Common Lisp
9 lines
213 B
Common Lisp
(defpackage #:dna
|
|
(:use #:cl)
|
|
(:export #:hamming-distance))
|
|
(in-package #:dna)
|
|
|
|
(defun hamming-distance (dna1 dna2)
|
|
"Determine number of mutations between DNA strands by computing the Hamming Distance."
|
|
)
|