]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.17
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sun, 20 Jun 2010 04:04:40 +0000 (09:34 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sun, 20 Jun 2010 04:04:40 +0000 (09:34 +0530)
src/sicp/ex2_17.clj [new file with mode: 0644]

diff --git a/src/sicp/ex2_17.clj b/src/sicp/ex2_17.clj
new file mode 100644 (file)
index 0000000..f58468d
--- /dev/null
@@ -0,0 +1,13 @@
+(ns sicp.ex2_17
+  (:use [sicp utils ch2_2]
+       [clojure test]))
+
+(defn last-pair [lst]
+  (if (= (length lst) 1)
+    lst
+    (last-pair (rest lst))))
+
+(deftest test-last-pair-1
+  (are [x y] [= x y]
+       (last-pair (list 1 2 3 4)) (list 4)
+       (last-pair (list 23 72 149 34)) (list 34)))
\ No newline at end of file