对于 Project Euler Problem 8,我被告知要解析一个 1000 位数字。这是一个蛮力的 Lisp 解决方案,它基本上每 5 个连续的数字进行一次,并从头到尾将它们相乘,并在循环结束时返回最大的一个。
编码:
(defun pep8 ()
(labels ((product-of-5n (n)
(eval (append '(*)
(loop for x from n to (+ n 5)
collect (parse-integer
1000digits-str :start x :end (+ x 1)))))))
(let ((largestproduct 0))
(do ((currentdigit 0 (1+ currentdigit)))
((> currentdigit (- (length 1000digits-str) 6)) (return largestproduct))
(when (> (product-of-5n currentdigit) largestproduct)
(setf largestproduct (product-of-5n currentdigit)))))))
它编译时没有任何警告,但在运行它时我得到:
no non-whitespace characters in string "73167176531330624919225119674426574742355349194934...".
[Condition of type SB-INT:SIMPLE-PARSE-ERROR]
product-of-5n
我通过将其再次编写为全局函数来检查本地函数是否正常工作:
(defun product-of-5n (n)
(eval (append '(*)
(loop for x from n to (+ n 5)
collect (parse-integer
1000digits-str :start x :end (+ x 1))))))
这个编译没有警告并且在运行它时,似乎运行完美。例如,
CL_USER> (product-of-5n 1) => 882
这似乎是正确的,因为前五个数字是 7、3、1、6 和 7。
至于1000digits-str
,它只是用defvar
和 Emacs'编译的longlines-show-hard-newlines
,我认为字符串中没有任何空白字符,因为这就是 SBCL 抱怨的,对吧?