From 9af65c8ac721024d0e45a2a6bde5c3f9fe638516 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 7 Apr 2020 17:20:43 +0200 Subject: problem 1 2 4 in common lisp --- lisp/005-smallest_multiple.lisp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lisp/005-smallest_multiple.lisp (limited to 'lisp/005-smallest_multiple.lisp') diff --git a/lisp/005-smallest_multiple.lisp b/lisp/005-smallest_multiple.lisp new file mode 100644 index 0000000..9599507 --- /dev/null +++ b/lisp/005-smallest_multiple.lisp @@ -0,0 +1,8 @@ +;;;; ;;;;;;;; +;;;; Smallest multiple +;;;; Problem 5 +;;;; +;;;; 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. +;;;; What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20? +;;;; ;;;;;;;; + -- cgit