99 questions/21 to 28
From HaskellWiki
(→Problem 23: add some spaces) |
(moved solutions for questions 21-28 to new subpages of 99 questions/Solutions) |
||
| Line 10: | Line 10: | ||
Insert an element at a given position into a list. | Insert an element at a given position into a list. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (insert-at 'alfa '(a b c d) 2) | * (insert-at 'alfa '(a b c d) 2) | ||
(A ALFA B C D) | (A ALFA B C D) | ||
| + | </pre> | ||
| + | |||
Example in Haskell: | Example in Haskell: | ||
| + | <haskell> | ||
P21> insertAt 'X' "abcd" 2 | P21> insertAt 'X' "abcd" 2 | ||
"aXbcd" | "aXbcd" | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/21 | Solutions]] | |
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
== Problem 22 == | == Problem 22 == | ||
Create a list containing all integers within a given range. | Create a list containing all integers within a given range. | ||
| + | |||
| + | Example: | ||
<pre> | <pre> | ||
| - | |||
* (range 4 9) | * (range 4 9) | ||
(4 5 6 7 8 9) | (4 5 6 7 8 9) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| + | |||
| + | </haskell> | ||
Prelude> range 4 9 | Prelude> range 4 9 | ||
[4,5,6,7,8,9] | [4,5,6,7,8,9] | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/22 | Solutions]] | |
| - | + | ||
| + | |||
== Problem 23 == | == Problem 23 == | ||
Extract a given number of randomly selected elements from a list. | Extract a given number of randomly selected elements from a list. | ||
| + | |||
| + | Example: | ||
<pre> | <pre> | ||
| - | |||
* (rnd-select '(a b c d e f g h) 3) | * (rnd-select '(a b c d e f g h) 3) | ||
(E D A) | (E D A) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| + | |||
| + | <haskell> | ||
Prelude System.Random>rnd_select "abcdefgh" 3 >>= putStrLn | Prelude System.Random>rnd_select "abcdefgh" 3 >>= putStrLn | ||
eda | eda | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/23 | Solutions]] | |
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
== Problem 24 == | == Problem 24 == | ||
Lotto: Draw N different random numbers from the set 1..M. | Lotto: Draw N different random numbers from the set 1..M. | ||
| + | |||
| + | Example: | ||
<pre> | <pre> | ||
| - | |||
* (rnd-select 6 49) | * (rnd-select 6 49) | ||
(23 1 17 33 21 37) | (23 1 17 33 21 37) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| + | |||
| + | <haskell> | ||
Prelude System.Random>diff_select 6 49 | Prelude System.Random>diff_select 6 49 | ||
Prelude System.Random>[23,1,17,33,21,37] | Prelude System.Random>[23,1,17,33,21,37] | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/24 | Solutions]] | |
| - | |||
== Problem 25 == | == Problem 25 == | ||
| Line 192: | Line 93: | ||
Generate a random permutation of the elements of a list. | Generate a random permutation of the elements of a list. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (rnd-permu '(a b c d e f)) | * (rnd-permu '(a b c d e f)) | ||
(B A D C E F) | (B A D C E F) | ||
| - | + | </pre> | |
Example in Haskell: | Example in Haskell: | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
<haskell> | <haskell> | ||
| - | rnd_permu | + | Prelude>rnd_permu "abcdef" |
| + | Prelude>"badcef" | ||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/25 | Solutions]] | |
| + | |||
== Problem 26 == | == Problem 26 == | ||
(**) Generate the combinations of K distinct objects chosen from the N elements of a list | (**) Generate the combinations of K distinct objects chosen from the N elements of a list | ||
| + | |||
In how many ways can a committee of 3 be chosen from a group of 12 people? We all know that there are C(12,3) = 220 possibilities (C(N,K) denotes the | In how many ways can a committee of 3 be chosen from a group of 12 people? We all know that there are C(12,3) = 220 possibilities (C(N,K) denotes the | ||
well-known binomial coefficients). For pure mathematicians, this result may be great. But we want to really generate all the possibilities in a list. | well-known binomial coefficients). For pure mathematicians, this result may be great. But we want to really generate all the possibilities in a list. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (combinations 3 '(a b c d e f)) | * (combinations 3 '(a b c d e f)) | ||
((A B C) (A B D) (A B E) ... ) | ((A B C) (A B D) (A B E) ... ) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| + | |||
| + | <haskell> | ||
> combinations 3 "abcdef" | > combinations 3 "abcdef" | ||
["abc","abd","abe",...] | ["abc","abd","abe",...] | ||
| - | </ | + | </haskell> |
| - | + | [[99 questions/Solutions/26 | Solutions]] | |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
== Problem 27 == | == Problem 27 == | ||
| Line 263: | Line 140: | ||
a) In how many ways can a group of 9 people work in 3 disjoint subgroups of 2, 3 and 4 persons? Write a function that generates all the possibilities and returns them in a list. | a) In how many ways can a group of 9 people work in 3 disjoint subgroups of 2, 3 and 4 persons? Write a function that generates all the possibilities and returns them in a list. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (group3 '(aldo beat carla david evi flip gary hugo ida)) | * (group3 '(aldo beat carla david evi flip gary hugo ida)) | ||
( ( (ALDO BEAT) (CARLA DAVID EVI) (FLIP GARY HUGO IDA) ) | ( ( (ALDO BEAT) (CARLA DAVID EVI) (FLIP GARY HUGO IDA) ) | ||
| Line 272: | Line 150: | ||
b) Generalize the above predicate in a way that we can specify a list of group sizes and the predicate will return a list of groups. | b) Generalize the above predicate in a way that we can specify a list of group sizes and the predicate will return a list of groups. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (group '(aldo beat carla david evi flip gary hugo ida) '(2 2 5)) | * (group '(aldo beat carla david evi flip gary hugo ida) '(2 2 5)) | ||
( ( (ALDO BEAT) (CARLA DAVID) (EVI FLIP GARY HUGO IDA) ) | ( ( (ALDO BEAT) (CARLA DAVID) (EVI FLIP GARY HUGO IDA) ) | ||
| Line 283: | Line 162: | ||
You may find more about this combinatorial problem in a good book on discrete mathematics under the term "multinomial coefficients". | You may find more about this combinatorial problem in a good book on discrete mathematics under the term "multinomial coefficients". | ||
| - | |||
Example in Haskell: | Example in Haskell: | ||
| - | |||
| + | <haskell> | ||
P27> group [2,3,4] ["aldo","beat","carla","david","evi","flip","gary","hugo","ida"] | P27> group [2,3,4] ["aldo","beat","carla","david","evi","flip","gary","hugo","ida"] | ||
[[["aldo","beat"],["carla","david","evi"],["flip","gary","hugo","ida"]],...] | [[["aldo","beat"],["carla","david","evi"],["flip","gary","hugo","ida"]],...] | ||
| Line 294: | Line 172: | ||
[[["aldo","beat"],["carla","david"],["evi","flip","gary","hugo","ida"]],...] | [[["aldo","beat"],["carla","david"],["evi","flip","gary","hugo","ida"]],...] | ||
(altogether 756 solutions) | (altogether 756 solutions) | ||
| - | </ | + | </haskell> |
| - | + | [[99 questions/Solutions/27 | Solutions]] | |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
== Problem 28 == | == Problem 28 == | ||
| Line 330: | Line 183: | ||
a) We suppose that a list contains elements that are lists themselves. The objective is to sort the elements of this list according to their length. E.g. short lists first, longer lists later, or vice versa. | a) We suppose that a list contains elements that are lists themselves. The objective is to sort the elements of this list according to their length. E.g. short lists first, longer lists later, or vice versa. | ||
| + | |||
| + | Example: | ||
<pre> | <pre> | ||
| - | |||
* (lsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) | * (lsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) | ||
((O) (D E) (D E) (M N) (A B C) (F G H) (I J K L)) | ((O) (D E) (D E) (M N) (A B C) (F G H) (I J K L)) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| - | |||
| - | |||
| - | |||
| - | |||
<haskell> | <haskell> | ||
| - | + | Prelude>lsort ["abc","de","fgh","de","ijkl","mn","o"] | |
| - | + | Prelude>["o","de","de","mn","abc","fgh","ijkl"] | |
| - | lsort | + | |
| - | + | ||
</haskell> | </haskell> | ||
| - | |||
| - | |||
b) Again, we suppose that a list contains elements that are lists themselves. But this time the objective is to sort the elements of this list according to their <b>length frequency</b>; i.e., in the default, where sorting is done ascendingly, lists with rare lengths are placed first, others with a more frequent length come later. | b) Again, we suppose that a list contains elements that are lists themselves. But this time the objective is to sort the elements of this list according to their <b>length frequency</b>; i.e., in the default, where sorting is done ascendingly, lists with rare lengths are placed first, others with a more frequent length come later. | ||
| - | |||
Example: | Example: | ||
| + | |||
| + | <pre> | ||
* (lfsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) | * (lfsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) | ||
((i j k l) (o) (a b c) (f g h) (d e) (d e) (m n)) | ((i j k l) (o) (a b c) (f g h) (d e) (d e) (m n)) | ||
| + | </pre> | ||
Example in Haskell: | Example in Haskell: | ||
| - | |||
| - | |||
| - | |||
| - | |||
<haskell> | <haskell> | ||
| - | + | lfsort ["abc", "de", "fgh", "de", "ijkl", "mn", "o"] | |
| - | + | ["ijkl","o","abc","fgh","de","de","mn"] | |
| - | lfsort | + | |
| - | + | ||
| - | + | ||
</haskell> | </haskell> | ||
| - | + | [[99 questions/Solutions/28 | Solutions]] | |
| + | |||
| + | |||
[[Category:Tutorials]] | [[Category:Tutorials]] | ||
Revision as of 16:10, 13 July 2010
This is part of Ninety-Nine Haskell Problems, based on Ninety-Nine Prolog Problems and Ninety-Nine Lisp Problems.
If you want to work on one of these, put your name in the block so we know someone's working on it. Then, change n in your block to the appropriate problem number, and fill in the <Problem description>,<example in lisp>,<example in Haskell>,<solution in haskell> and <description of implementation> fields.
1 Problem 21
Insert an element at a given position into a list.
Example:
* (insert-at 'alfa '(a b c d) 2) (A ALFA B C D)
Example in Haskell:
P21> insertAt 'X' "abcd" 2 "aXbcd"
2 Problem 22
Create a list containing all integers within a given range.
Example:
* (range 4 9) (4 5 6 7 8 9)
Example in Haskell:
</haskell> Prelude> range 4 9 [4,5,6,7,8,9] </haskell>
3 Problem 23
Extract a given number of randomly selected elements from a list.
Example:
* (rnd-select '(a b c d e f g h) 3) (E D A)
Example in Haskell:
Prelude System.Random>rnd_select "abcdefgh" 3 >>= putStrLn eda
4 Problem 24
Lotto: Draw N different random numbers from the set 1..M.
Example:
* (rnd-select 6 49) (23 1 17 33 21 37)
Example in Haskell:
Prelude System.Random>diff_select 6 49 Prelude System.Random>[23,1,17,33,21,37]
5 Problem 25
Generate a random permutation of the elements of a list.
Example:
* (rnd-permu '(a b c d e f)) (B A D C E F)
Example in Haskell:
Prelude>rnd_permu "abcdef" Prelude>"badcef"
6 Problem 26
(**) Generate the combinations of K distinct objects chosen from the N elements of a list
In how many ways can a committee of 3 be chosen from a group of 12 people? We all know that there are C(12,3) = 220 possibilities (C(N,K) denotes the well-known binomial coefficients). For pure mathematicians, this result may be great. But we want to really generate all the possibilities in a list.
Example:
* (combinations 3 '(a b c d e f)) ((A B C) (A B D) (A B E) ... )
Example in Haskell:
> combinations 3 "abcdef" ["abc","abd","abe",...]
7 Problem 27
Group the elements of a set into disjoint subsets.
a) In how many ways can a group of 9 people work in 3 disjoint subgroups of 2, 3 and 4 persons? Write a function that generates all the possibilities and returns them in a list.
Example:
* (group3 '(aldo beat carla david evi flip gary hugo ida)) ( ( (ALDO BEAT) (CARLA DAVID EVI) (FLIP GARY HUGO IDA) ) ... )
b) Generalize the above predicate in a way that we can specify a list of group sizes and the predicate will return a list of groups.
Example:
* (group '(aldo beat carla david evi flip gary hugo ida) '(2 2 5)) ( ( (ALDO BEAT) (CARLA DAVID) (EVI FLIP GARY HUGO IDA) ) ... )
Note that we do not want permutations of the group members; i.e. ((ALDO BEAT) ...) is the same solution as ((BEAT ALDO) ...). However, we make a difference between ((ALDO BEAT) (CARLA DAVID) ...) and ((CARLA DAVID) (ALDO BEAT) ...).
You may find more about this combinatorial problem in a good book on discrete mathematics under the term "multinomial coefficients".
Example in Haskell:
P27> group [2,3,4] ["aldo","beat","carla","david","evi","flip","gary","hugo","ida"] [[["aldo","beat"],["carla","david","evi"],["flip","gary","hugo","ida"]],...] (altogether 1260 solutions) 27> group [2,2,5] ["aldo","beat","carla","david","evi","flip","gary","hugo","ida"] [[["aldo","beat"],["carla","david"],["evi","flip","gary","hugo","ida"]],...] (altogether 756 solutions)
8 Problem 28
Sorting a list of lists according to length of sublists
a) We suppose that a list contains elements that are lists themselves. The objective is to sort the elements of this list according to their length. E.g. short lists first, longer lists later, or vice versa.
Example:
* (lsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) ((O) (D E) (D E) (M N) (A B C) (F G H) (I J K L))
Example in Haskell:
Prelude>lsort ["abc","de","fgh","de","ijkl","mn","o"] Prelude>["o","de","de","mn","abc","fgh","ijkl"]
b) Again, we suppose that a list contains elements that are lists themselves. But this time the objective is to sort the elements of this list according to their length frequency; i.e., in the default, where sorting is done ascendingly, lists with rare lengths are placed first, others with a more frequent length come later.
Example:
* (lfsort '((a b c) (d e) (f g h) (d e) (i j k l) (m n) (o))) ((i j k l) (o) (a b c) (f g h) (d e) (d e) (m n))
Example in Haskell:
lfsort ["abc", "de", "fgh", "de", "ijkl", "mn", "o"] ["ijkl","o","abc","fgh","de","de","mn"]
