Difference between revisions of "99 questions/11 to 20"
(simplify #16 recursive solution) |
m (unify ghci prompts) |
||
(22 intermediate revisions by 15 users not shown) | |||
Line 5: | Line 5: | ||
== Problem 11 == | == Problem 11 == | ||
− | (*) Modified run-length encoding. | + | (*) Modified run-length encoding. |
+ | |||
Modify the result of problem 10 in such a way that if an element has no duplicates it is simply copied into the result list. Only elements with duplicates are transferred as (N E) lists. | Modify the result of problem 10 in such a way that if an element has no duplicates it is simply copied into the result list. Only elements with duplicates are transferred as (N E) lists. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (encode-modified '(a a a a b c c a a d e e e e)) | * (encode-modified '(a a a a b c c a a d e e e e)) | ||
((4 A) B (2 C) (2 A) D (4 E)) | ((4 A) B (2 C) (2 A) D (4 E)) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | + | λ> encodeModified "aaaabccaadeeee" | |
− | + | [Multiple 4 'a',Single 'b',Multiple 2 'c', | |
− | + | Multiple 2 'a',Single 'd',Multiple 4 'e'] | |
− | |||
− | |||
− | |||
− | |||
− | |||
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/11 | Solutions]] | |
− | |||
− | |||
== Problem 12 == | == Problem 12 == | ||
− | (**) Decode a run-length encoded list. | + | (**) Decode a run-length encoded list. |
+ | |||
Given a run-length code list generated as specified in problem 11. Construct its uncompressed version. | Given a run-length code list generated as specified in problem 11. Construct its uncompressed version. | ||
− | |||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | decodeModified | + | λ> decodeModified |
− | + | [Multiple 4 'a',Single 'b',Multiple 2 'c', | |
− | + | Multiple 2 'a',Single 'd',Multiple 4 'e'] | |
− | + | "aaaabccaadeeee" | |
− | |||
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/12 | Solutions]] | |
− | + | ||
== Problem 13 == | == Problem 13 == | ||
(**) Run-length encoding of a list (direct solution). | (**) Run-length encoding of a list (direct solution). | ||
+ | |||
Implement the so-called run-length encoding data compression method directly. I.e. don't explicitly create the sublists containing the duplicates, as in problem 9, but only count them. As in problem P11, simplify the result list by replacing the singleton lists (1 X) by X. | Implement the so-called run-length encoding data compression method directly. I.e. don't explicitly create the sublists containing the duplicates, as in problem 9, but only count them. As in problem P11, simplify the result list by replacing the singleton lists (1 X) by X. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (encode-direct '(a a a a b c c a a d e e e e)) | * (encode-direct '(a a a a b c c a a d e e e e)) | ||
((4 A) B (2 C) (2 A) D (4 E)) | ((4 A) B (2 C) (2 A) D (4 E)) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | + | λ> encodeDirect "aaaabccaadeeee" | |
− | + | [Multiple 4 'a',Single 'b',Multiple 2 'c', | |
− | + | Multiple 2 'a',Single 'd',Multiple 4 'e'] | |
− | + | </haskell> | |
− | |||
− | |||
− | |||
− | + | [[99 questions/Solutions/13 | Solutions]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Problem 14 == | == Problem 14 == | ||
(*) Duplicate the elements of a list. | (*) Duplicate the elements of a list. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (dupli '(a b c c d)) | * (dupli '(a b c c d)) | ||
(A A B B C C C C D D) | (A A B B C C C C D D) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | dupli [] | + | λ> dupli [1, 2, 3] |
− | + | [1,1,2,2,3,3] | |
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/14 | Solutions]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Problem 15 == | == Problem 15 == | ||
(**) Replicate the elements of a list a given number of times. | (**) Replicate the elements of a list a given number of times. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (repli '(a b c) 3) | * (repli '(a b c) 3) | ||
(A A A B B B C C C) | (A A A B B B C C C) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | repli | + | λ> repli "abc" 3 |
− | + | "aaabbbccc" | |
</haskell> | </haskell> | ||
+ | |||
+ | [[99 questions/Solutions/15 | Solutions]] | ||
+ | |||
== Problem 16 == | == Problem 16 == | ||
+ | |||
(**) Drop every N'th element from a list. | (**) Drop every N'th element from a list. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (drop '(a b c d e f g h i k) 3) | * (drop '(a b c d e f g h i k) 3) | ||
(A B D E G H K) | (A B D E G H K) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | + | λ> dropEvery "abcdefghik" 3 | |
− | + | "abdeghk" | |
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/16 | Solutions]] | |
− | |||
− | |||
− | |||
− | |||
== Problem 17 == | == Problem 17 == | ||
Line 172: | Line 134: | ||
Do not use any predefined predicates. | Do not use any predefined predicates. | ||
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (split '(a b c d e f g h i k) 3) | * (split '(a b c d e f g h i k) 3) | ||
( (A B C) (D E F G H I K)) | ( (A B C) (D E F G H I K)) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | split | + | λ> split "abcdefghik" 3 |
+ | ("abc", "defghik") | ||
</haskell> | </haskell> | ||
− | |||
− | + | [[99 questions/Solutions/17 | Solutions]] | |
+ | |||
+ | |||
== Problem 18 == | == Problem 18 == | ||
(**) Extract a slice from a list. | (**) Extract a slice from a list. | ||
− | Given two indices, i and k, the slice is the list containing the elements between the i'th and | + | Given two indices, i and k, the slice is the list containing the elements between the i'th and k'th element of the original list (both limits included). Start counting the elements with 1. |
+ | |||
+ | Example: | ||
<pre> | <pre> | ||
− | |||
* (slice '(a b c d e f g h i k) 3 7) | * (slice '(a b c d e f g h i k) 3 7) | ||
(C D E F G) | (C D E F G) | ||
+ | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | slice | + | λ> slice ['a','b','c','d','e','f','g','h','i','k'] 3 7 |
+ | "cdefg" | ||
</haskell> | </haskell> | ||
+ | |||
+ | [[99 questions/Solutions/18 | Solutions]] | ||
+ | |||
== Problem 19 == | == Problem 19 == | ||
Line 216: | Line 180: | ||
Hint: Use the predefined functions length and (++). | Hint: Use the predefined functions length and (++). | ||
+ | |||
+ | Examples: | ||
<pre> | <pre> | ||
− | |||
* (rotate '(a b c d e f g h) 3) | * (rotate '(a b c d e f g h) 3) | ||
(D E F G H A B C) | (D E F G H A B C) | ||
Line 224: | Line 189: | ||
* (rotate '(a b c d e f g h) -2) | * (rotate '(a b c d e f g h) -2) | ||
(G H A B C D E F) | (G H A B C D E F) | ||
+ | </pre> | ||
Examples in Haskell: | Examples in Haskell: | ||
− | + | ||
+ | <haskell> | ||
+ | λ> rotate ['a','b','c','d','e','f','g','h'] 3 | ||
"defghabc" | "defghabc" | ||
− | + | λ> rotate ['a','b','c','d','e','f','g','h'] (-2) | |
"ghabcdef" | "ghabcdef" | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/19 | Solutions]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Problem 20 == | == Problem 20 == | ||
Line 265: | Line 209: | ||
Example in Prolog: | Example in Prolog: | ||
+ | |||
<pre> | <pre> | ||
?- remove_at(X,[a,b,c,d],2,R). | ?- remove_at(X,[a,b,c,d],2,R). | ||
Line 272: | Line 217: | ||
Example in Lisp: | Example in Lisp: | ||
+ | |||
<pre> | <pre> | ||
* (remove-at '(a b c d) 2) | * (remove-at '(a b c d) 2) | ||
(A C D) | (A C D) | ||
</pre> | </pre> | ||
+ | |||
(Note that this only returns the residue list, while the Prolog version also returns the deleted element.) | (Note that this only returns the residue list, while the Prolog version also returns the deleted element.) | ||
Example in Haskell: | Example in Haskell: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
<haskell> | <haskell> | ||
− | + | λ> removeAt 2 "abcd" | |
− | removeAt | + | ('b',"acd") |
− | |||
− | |||
− | |||
</haskell> | </haskell> | ||
− | + | [[99 questions/Solutions/20 | Solutions]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Tutorials]] | [[Category:Tutorials]] |
Latest revision as of 08:38, 8 February 2019
This is part of Ninety-Nine Haskell Problems, based on Ninety-Nine Prolog Problems and Ninety-Nine Lisp Problems.
Problem 11
(*) Modified run-length encoding.
Modify the result of problem 10 in such a way that if an element has no duplicates it is simply copied into the result list. Only elements with duplicates are transferred as (N E) lists.
Example:
* (encode-modified '(a a a a b c c a a d e e e e)) ((4 A) B (2 C) (2 A) D (4 E))
Example in Haskell:
λ> encodeModified "aaaabccaadeeee"
[Multiple 4 'a',Single 'b',Multiple 2 'c',
Multiple 2 'a',Single 'd',Multiple 4 'e']
Problem 12
(**) Decode a run-length encoded list.
Given a run-length code list generated as specified in problem 11. Construct its uncompressed version.
Example in Haskell:
λ> decodeModified
[Multiple 4 'a',Single 'b',Multiple 2 'c',
Multiple 2 'a',Single 'd',Multiple 4 'e']
"aaaabccaadeeee"
Problem 13
(**) Run-length encoding of a list (direct solution).
Implement the so-called run-length encoding data compression method directly. I.e. don't explicitly create the sublists containing the duplicates, as in problem 9, but only count them. As in problem P11, simplify the result list by replacing the singleton lists (1 X) by X.
Example:
* (encode-direct '(a a a a b c c a a d e e e e)) ((4 A) B (2 C) (2 A) D (4 E))
Example in Haskell:
λ> encodeDirect "aaaabccaadeeee"
[Multiple 4 'a',Single 'b',Multiple 2 'c',
Multiple 2 'a',Single 'd',Multiple 4 'e']
Problem 14
(*) Duplicate the elements of a list.
Example:
* (dupli '(a b c c d)) (A A B B C C C C D D)
Example in Haskell:
λ> dupli [1, 2, 3]
[1,1,2,2,3,3]
Problem 15
(**) Replicate the elements of a list a given number of times.
Example:
* (repli '(a b c) 3) (A A A B B B C C C)
Example in Haskell:
λ> repli "abc" 3
"aaabbbccc"
Problem 16
(**) Drop every N'th element from a list.
Example:
* (drop '(a b c d e f g h i k) 3) (A B D E G H K)
Example in Haskell:
λ> dropEvery "abcdefghik" 3
"abdeghk"
Problem 17
(*) Split a list into two parts; the length of the first part is given.
Do not use any predefined predicates.
Example:
* (split '(a b c d e f g h i k) 3) ( (A B C) (D E F G H I K))
Example in Haskell:
λ> split "abcdefghik" 3
("abc", "defghik")
Problem 18
(**) Extract a slice from a list.
Given two indices, i and k, the slice is the list containing the elements between the i'th and k'th element of the original list (both limits included). Start counting the elements with 1.
Example:
* (slice '(a b c d e f g h i k) 3 7) (C D E F G)
Example in Haskell:
λ> slice ['a','b','c','d','e','f','g','h','i','k'] 3 7
"cdefg"
Problem 19
(**) Rotate a list N places to the left.
Hint: Use the predefined functions length and (++).
Examples:
* (rotate '(a b c d e f g h) 3) (D E F G H A B C) * (rotate '(a b c d e f g h) -2) (G H A B C D E F)
Examples in Haskell:
λ> rotate ['a','b','c','d','e','f','g','h'] 3
"defghabc"
λ> rotate ['a','b','c','d','e','f','g','h'] (-2)
"ghabcdef"
Problem 20
(*) Remove the K'th element from a list.
Example in Prolog:
?- remove_at(X,[a,b,c,d],2,R). X = b R = [a,c,d]
Example in Lisp:
* (remove-at '(a b c d) 2) (A C D)
(Note that this only returns the residue list, while the Prolog version also returns the deleted element.)
Example in Haskell:
λ> removeAt 2 "abcd"
('b',"acd")