فهرست منبع

1 Multiples of 3 or 5

Mistivia 6 ماه پیش
کامیت
ab11ad9a8b
1فایلهای تغییر یافته به همراه13 افزوده شده و 0 حذف شده
  1. 13 0
      0001/main.lisp

+ 13 - 0
0001/main.lisp

@@ -0,0 +1,13 @@
+(defun genlist (n)
+  (defun impl (x lst)
+    (if (> x n)
+	(reverse lst)
+	(impl (+ 1 x) (cons x lst))))
+  (impl 1 '()))
+
+(let ((sum 0))
+  (loop for x in (genlist 999)
+        do (if (or (equal 0 (mod x 3))
+		   (equal 0 (mod x 5)))
+	       (setf sum (+ sum x))))
+  (print sum))