Skip to content

Commit 1e19f31

Browse files
authored
Remove explicit type of merge
make the type of merge consistent with the assignment
1 parent 7e10952 commit 1e19f31

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

labs/lab10.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ of `xs` together with subsequences of `xs` extended by `x`. To produce the sorte
308308

309309
::: details Solution { hideme }
310310
```haskell
311-
merge :: (a -> Int) -> [a] -> [a] -> [a]
312311
merge _ [] ys = ys
313312
merge _ xs [] = xs
314313
merge f p@(x:xs) q@(y:ys) | f x < f y = x:merge f xs q

0 commit comments

Comments
 (0)