main.lisp 304 B

12345678910111213141516
  1. (defun my-reduce (x y)
  2. (if (= 0 (mod x y))
  3. (my-reduce (/ x y) y)
  4. x))
  5. (defun max-factor-impl (x cur)
  6. (let ((next-x (my-reduce x cur)))
  7. (if (= 1 next-x)
  8. cur
  9. (max-factor-impl next-x (+ 1 cur)))))
  10. (defun max-factor (x)
  11. (max-factor-impl x 2))
  12. (format t "~&~S~%" (max-factor 600851475143))