diff --git a/SICP/exercise_1_14.janet b/SICP/exercise_1_14.janet index 368f4fb..2f93225 100644 --- a/SICP/exercise_1_14.janet +++ b/SICP/exercise_1_14.janet @@ -102,11 +102,11 @@ (cc amount (- kind-of-coins 1) name) (cc (- amount (first-denomination kind-of-coins)) kind-of-coins name)))) - (def result (cc amount denom "test")) + (def result (cc amount denom "start")) (dot/write graph "exercise_1_14.gv") result) -(print (count-change2 11 2)) +(print (count-change2 51 5)) # Using the graph we can find the following relation for (cc n 1) # f(0,1) = 1