From 5627b8d37b5f7d67ec68124ce6f4ed15a040fdae Mon Sep 17 00:00:00 2001 From: Luke Arno Date: Fri, 13 Jan 2012 15:17:40 -0800 Subject: [PATCH] Issue #21: Go deeper... deeper... in final recursion koan --- src/koans/recursion.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/recursion.clj b/src/koans/recursion.clj index 42583056f..53a9265cd 100644 --- a/src/koans/recursion.clj +++ b/src/koans/recursion.clj @@ -48,4 +48,4 @@ (< 1000000000000000000000000N (factorial 1000N)) "But what happens when the machine limits you?" - (< 1000000000000000000000000N (factorial 10000N))) + (< 1000000000000000000000000N (factorial 100003N)))