From 5e0ef850e365626fe8ca498f682427175f693f91 Mon Sep 17 00:00:00 2001 From: Denis Smet Date: Sun, 15 Oct 2023 22:25:20 +0400 Subject: [PATCH] Exercise 1.11 --- src/sicp/chapter_1/ex_1_11.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sicp/chapter_1/ex_1_11.clj b/src/sicp/chapter_1/ex_1_11.clj index bb4ab3e..a145781 100644 --- a/src/sicp/chapter_1/ex_1_11.clj +++ b/src/sicp/chapter_1/ex_1_11.clj @@ -8,7 +8,6 @@ ; Write a procedure that computes f by means of a recursive process. ; Write a procedure that computes f by means of an iterative process. - (defn f [n] ; Recursive process (cond (< n 3) n :else (+ (f (- n 1))