99 LISP problems: Problem #32 Aug 6th, 2014 1:43 am Solution to the 99 LISP Problems #32 1 2 3 4 (defun eucgcd (m n) (cond ((or (<= m 1) (<= n 1)) nil) ((= m n) m) (t (gcd (- (max m n) (min m n)) (min m n))))) Lisp dialect: Steel Bank Common Lisp