소스 검색

4 Largest Palindrome Product

Mistivia 4 달 전
부모
커밋
1701dc74ad
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      0004/main.lisp

+ 14 - 0
0004/main.lisp

@@ -0,0 +1,14 @@
+(defun find-palindrome-impl (i j current-max)
+    (cond ((> j 999) current-max)
+	  ((> i 999) (find-palindrome-impl 100 (+ j 1) current-max))
+	  ((is-palindrome (* i j))
+	   (if (> (* i j) current-max)
+	       (find-palindrome-impl (+ i 1) j (* i j))
+	       (find-palindrome-impl (+ i 1) j current-max)))
+	  (t (find-palindrome-impl (+ i 1) j current-max))))
+
+(defun is-palindrome (x)
+  (equal (reverse (write-to-string x)) (write-to-string x)))
+
+
+(format t "~&~S~%" (find-palindrome-impl 100 100 0))