A few completely optional exercises about control flow to try.
๐Exercise: Rearrange pattern match cases
The following pattern match is in disarray. The ordering of the case statements doesn't allow some cases to be reached. Reorder the cases so that the evaluation of the pattern match produces the desiredtrue
result for the boolean expression.
use Universal
itDependsUpon : Optional Text -> Text
itDependsUpon = cases
_ -> "So much depends"
Some textValue -> "upon"
None -> "a red wheel barrow"
Some x | size x === 3 -> "glazed with rain"
optionalValue | Optional.contains "all" optionalValue -> "water"
(itDependsUpon None === "a red wheel barrow") && (itDependsUpon (Some "spring") === "upon") && (itDependsUpon (Some "and") === "glazed with rain") && (itDependsUpon (Some "all") === "water")
One possible answer:
itDependsUpon : Optional Text -> Text
itDependsUpon = cases
optionalValue | Optional.contains "all" optionalValue -> "water"
Some x | Text.size x === 3 -> "glazed with rain"
Some textValue -> "upon"
None -> "a red wheel barrow"
_ -> "So much depends"
(itDependsUpon None === "a red wheel barrow")
&& (itDependsUpon (Some "spring") === "upon")
&& (itDependsUpon (Some "and") === "glazed with rain")
&& (itDependsUpon (Some "all") === "water")โงจtrue
Note, you could also have a working answer with theNone
case at the top of the match statement.
๐Exercise: Practice using casessyntax
Rewrite the following function to usecases
instead ofmatch โฆ with
:
authorMatcher : Text -> Optional Text
authorMatcher book = match book with
"Of Mice and Men" -> Some "John Steinbeck"
"To Kill a Mockingbird" -> Some "Harper Lee"
"The Tempest" -> Some "William Shakespeare"
_ -> None
The argument to the function can be inferred, remove the reference to it in the term definition and substitutecases
for thematch book with
phrase.
authorMatcher : Text -> Optional Text
authorMatcher = cases
"Of Mice and Men" -> Some "John Steinbeck"
"To Kill a Mockingbird" -> Some "Harper Lee"
"The Tempest" -> Some "William Shakespeare"
_ -> None
Rewrite the following multi-argument function with thecases
syntax.
use Nat
matchTwo : Nat -> Nat -> Text
matchTwo n1 n2 = match (n1,n2) with
(a, b) | a < 3 -> "small number first"
(a, b) | b < 3 -> "small number second"
_ -> "big number"
matchTwo 5 2
๐Exercise: Rewrite an if/else expression as a pattern match
This if / else expression can also be written as a case statement. Translate it so that it uses amatch
expression.
ex4.myText : Text -> Text
ex4.myText : Text -> Text
ex4.myText word =
if word === "Testing123" then "I'm a test"
else
use Nat >
use Text size
if size word > 8 then Text.repeat (size word) "!"
else
if (size word > 5) && (Text.take 1 word === "A") then
"Starts with A"
else
if size word > 5 then "Long word"
else
if word === lib.base.Text.reverse word then "Mirror"
else "Other"
The following are a few test cases which should pass for your match statement version of the function.
ex4.test1 : [test.Result]
ex4.test1 : [test.Result]
ex4.test1 = test.check (ex4.myText "Testing123" === "I'm a test")
ex4.test2 : [test.Result]
ex4.test2 : [test.Result]
ex4.test2 = test.check (ex4.myText "aaaaahh!" === "Starts with A")
ex4.test3 : [test.Result]
ex4.test3 : [test.Result]
ex4.test3 = test.check (ex4.myText "Boooooooooo" === "!!!!!!!!!!!")
ex4.test4 : [test.Result]
ex4.test4 : [test.Result]
ex4.test4 = test.check (ex4.myText "hannah" === "Long word")
ex4.test5 : [test.Result]
ex4.test5 : [test.Result]
ex4.test5 = test.check (ex4.myText "wow" === "Mirror")
test6 : [test.Result]
test6 : [test.Result]
test6 = test.check (ex4.myText "Nope" === "Other")
answer.myText : Text -> Text
answer.myText : Text -> Text
answer.myText = cases
"Testing123" -> "I'm a test"
t
| Text.size t Nat.> 8 ->
Text.repeat (Text.size t) "!"
| (Text.size t Nat.> 5) && (Text.take 1 t === "a") ->
"Starts with A"
| Text.size t Nat.> 5 ->
"Long word"
| t === lib.base.Text.reverse t -> "Mirror"
_ -> "Other"