Question: 3. Build a LISP function called my-gcd to find a GCD. (Do not use the built-in gcd function.) gcd(x, y) = x, when x =
3. Build a LISP function called my-gcd to find a GCD. (Do not use the built-in gcd function.) gcd(x, y) = x, when x = y gcd(x, y-x), when x < y gcd(x-y, y), when x > y Test your program with the following data: > (my-gcd 5 10) 5 > (my-gcd 120 144) 24
(Please use DrRcket)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
