added assignment 2 ex 1

This commit is contained in:
Louis Heredero 2025-02-25 13:52:14 +01:00
parent 8639e2854a
commit 17b5c3adeb
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
2 changed files with 18 additions and 1 deletions

View File

@ -15,4 +15,4 @@ def sqrt(x: Double, approx: Double): Double = if (
sqrt(x, improve(x, approx)) sqrt(x, improve(x, approx))
} }
sqrt(612, 10) sqrt(612, 10)

17
src/Assignment2/Ex1.sc Normal file
View File

@ -0,0 +1,17 @@
import scala.annotation.tailrec
def fib(x: Int): Int = if (x == 0 || x == 1) {x} else {
fib(x - 1) + fib(x - 2)
}
def fibTail(x: Int): Int = {
@tailrec
def fibTailStep(x: Int, a: Int, b: Int): Int = {
if (x == 0) {a}
else fibTailStep(x - 1, b, a + b)
}
fibTailStep(x, 0, 1)
}
fib(10)
fibTail(10)