Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 02-starting-out.hs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ duplicate xs = undefined

{-
- Imitate the functinality of zip
- The function "min x y" returns the lower of values x and y
- hint The function "min x y" returns the lower of values x and y
- For example "ziplike [1,2,3] ['a', 'b', 'c', 'd']" returns [(1,'a'), (2, 'b'), (3, 'c')]
-}
ziplike xs ys = undefined
Expand Down