diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-07 17:20:43 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-07 17:20:43 +0200 |
| commit | 9af65c8ac721024d0e45a2a6bde5c3f9fe638516 (patch) | |
| tree | e9af93ce9e4d0263b2e76d2fd29ada90d313f334 /lisp/005-smallest_multiple.lisp | |
| parent | 31b43cf6d0d58812d30c0e2356f6458d06b1e52e (diff) | |
| download | project_euler-9af65c8ac721024d0e45a2a6bde5c3f9fe638516.tar.gz project_euler-9af65c8ac721024d0e45a2a6bde5c3f9fe638516.tar.bz2 project_euler-9af65c8ac721024d0e45a2a6bde5c3f9fe638516.zip | |
problem 1 2 4 in common lisp
Diffstat (limited to 'lisp/005-smallest_multiple.lisp')
| -rw-r--r-- | lisp/005-smallest_multiple.lisp | 8 |
1 files changed, 8 insertions, 0 deletions
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? +;;;; ;;;;;;;; + |
