solutions block 5

main
Jonathan Seltmann 2025-02-06 14:16:41 +01:00
parent 4a681a78dc
commit 0b1dc3c97f
5 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,12 @@
addThreeNumbers :: Int -> Int -> Int -> Int
addFive :: Int -> Int -> Int
addThreeNumbers x y z = x + y + z
addFive = addThreeNumbers 5
-- Test cases
main = do
print (addThreeNumbers 3 2 4) -- 9
print (addThreeNumbers 7 6 4) -- 17
print (addFive 3 2) -- 10
print (addFive 1 4) -- 10

View File

@ -0,0 +1,22 @@
module Main where
-- Definiert einen simplen container für unsere Werte
data Box a = Box a deriving (Show, Eq)
-- Schreibe die Unit funktion, welche einen Wert in einen Container verschachtelt!
unit :: a -> Box a
unit x = Box x
-- Schreibe die Bind Funktion, welches es einem Erlaubt funktionen des Monadischen Typen Box zu verketten
bind :: Box a -> (a -> Box b) -> Box b
bind (Box x) f = f x
-- Schreibe eine Lift Funktion, welche eine Funtion nimmt und diesselbe funktion mit den Monadischen Werten als Eigabe und Ausgabetyp besitzt
lift :: (a -> b) -> Box a -> Box b
lift f (Box x) = Box (f x)
-- Tests
main :: IO ()
main = do
print $ unit 10 -- Box 10

View File

@ -0,0 +1,26 @@
module Main where
-- Definiere eine einfache Datenstruktur für DOM-Elemente
data DOM a = Element a [DOM a] | EmptyElement deriving (Show, Eq)
-- Unit-Funktion: Verpackt einen Tag in einen DOM Element
unit :: a -> DOM a
unit x = Element x []
-- Bind-Funktion: Verknüpft Berechnungen für DOM-Elemente
bind :: DOM a -> (a -> DOM b) -> DOM b
bind EmptyElement _ = EmptyElement
bind (Element x children) f =
case f x of
EmptyElement -> EmptyElement
Element newX newChildren -> Element newX (newChildren ++ map (`bind` f) children)
-- Lift-Funktion: Hebt eine normale Funktion in den DOM-Kontext
lift :: (a -> b) -> DOM a -> DOM b
lift _ EmptyElement = EmptyElement
lift f (Element x children) = Element (f x) (map (lift f) children)
-- Hauptfunktion zum Ausführen von Tests
main :: IO ()
main = do
print $ unit "root" -- Element "root" []

View File

@ -0,0 +1,8 @@
doubleAndIncrement :: Int -> Int
doubleAndIncrement = (+1) . (*2)
-- Test cases
main = do
print (doubleAndIncrement 3) -- 7
print (doubleAndIncrement 5) -- 11

View File

@ -0,0 +1,13 @@
multiplyBy :: Int -> (Int -> Int)
double :: Int -> Int
multiplyBy = (*)
double = multiplyBy 2
triple = multiplyBy 3
-- Test cases
main = do
print (double 4) -- Expected output: 8
print (double 7) -- Expected output: 14
print (triple 4) -- Expected output: 12