We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e10952 commit 1e19f31Copy full SHA for 1e19f31
1 file changed
labs/lab10.md
@@ -308,7 +308,6 @@ of `xs` together with subsequences of `xs` extended by `x`. To produce the sorte
308
309
::: details Solution { hideme }
310
```haskell
311
-merge :: (a -> Int) -> [a] -> [a] -> [a]
312
merge _ [] ys = ys
313
merge _ xs [] = xs
314
merge f p@(x:xs) q@(y:ys) | f x < f y = x:merge f xs q
0 commit comments