added assignment 5 ex 1

This commit is contained in:
Louis Heredero 2025-03-20 07:48:36 +01:00
parent 2f72fbb599
commit 56f41ecc22
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
2 changed files with 26 additions and 0 deletions

View File

@ -81,3 +81,11 @@
- Binary tree
- List functions
- Predicates (any / every)
### Assignment 5 - High-order functions on lists
[Files](src/Assignment5)
- High-order functions
- Lists
- Map
- Fold
- Zip

View File

@ -0,0 +1,18 @@
def lengthStrings(strings: List[String]): List[Int] = {
strings map (s => s.length)
}
def dup[T](elem: T, n: Int): List[T] = {
(1 to n).toList map (_ => elem)
}
def dot(list1: List[Int], list2: List[Int]): List[Int] = {
list1 zip list2 map (p => p._1 * p._2)
}
assert(lengthStrings(List("How","long","are","we?")) == List(3, 4, 3, 3))
assert(dup("foo", 5) == List("foo", "foo", "foo", "foo", "foo"))
assert(dup(List(1,2,3), 2) == List(List(1,2,3), List(1,2,3)))
assert(dot(List(1,2,3), List(2,4,3)) == List(2,8,9))