SICP Exercise 1-11
Problem -A function f is defined by the rule that f(n) = n if n < 3 and f(n) = f(n-1) + 2 * f(n-2)
Read MoreProblem -A function f is defined by the rule that f(n) = n if n < 3 and f(n) = f(n-1) + 2 * f(n-2)
Read MoreSICP Exercise 1.6 is very interesting. I found it difficult to understand the problem and then the solution. It was fun to actually understand
Read MoreDefine a procedure that takes three numbers as arguments and returns the sum of squares of the two larger numbersI broke this problem into 3
Read More