Difference between revisions of "99 questions/11 to 20"

From HaskellWiki
Jump to navigation Jump to search
m
 
(6 intermediate revisions by 3 users not shown)
Line 2: Line 2:
   
 
This is part of [[H-99:_Ninety-Nine_Haskell_Problems|Ninety-Nine Haskell Problems]], based on [https://prof.ti.bfh.ch/hew1/informatik3/prolog/p-99/ Ninety-Nine Prolog Problems] and [http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html Ninety-Nine Lisp Problems].
 
This is part of [[H-99:_Ninety-Nine_Haskell_Problems|Ninety-Nine Haskell Problems]], based on [https://prof.ti.bfh.ch/hew1/informatik3/prolog/p-99/ Ninety-Nine Prolog Problems] and [http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html Ninety-Nine Lisp Problems].
 
== Problem 11 ==
 
   
 
== Problem 11 ==
(*) Modified run-length encoding.
 
  +
<div style="border-bottom:1px solid #eee">(*) Modified run-length encoding. <span style="float:right"><small>[[99 questions/Solutions/11|Solutions]]</small></span>
  +
</div>
  +
&nbsp;<br>
   
 
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.
Line 19: Line 20:
   
 
<haskell>
 
<haskell>
P11> encodeModified "aaaabccaadeeee"
+
λ> encodeModified "aaaabccaadeeee"
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/11 | Solutions]]
 
   
 
== Problem 12 ==
 
== Problem 12 ==
  +
<div style="border-bottom:1px solid #eee">(**) Decode a run-length encoded list. <span style="float:right"><small>[[99 questions/Solutions/12|Solutions]]</small></span>
 
  +
</div>
(**) Decode a run-length encoded list.
 
  +
&nbsp;<br>
   
 
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.
Line 35: Line 36:
   
 
<haskell>
 
<haskell>
P12> decodeModified
+
λ> decodeModified
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
Line 41: Line 42:
 
</haskell>
 
</haskell>
   
  +
[[99 questions/Solutions/12 | Solutions]]
 
   
 
== Problem 13 ==
 
== Problem 13 ==
  +
<div style="border-bottom:1px solid #eee">(**) Run-length encoding of a list (direct solution). <span style="float:right"><small>[[99 questions/Solutions/13|Solutions]]</small></span>
 
  +
</div>
(**) Run-length encoding of a list (direct solution).
 
  +
&nbsp;<br>
   
 
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.
Line 59: Line 61:
   
 
<haskell>
 
<haskell>
P13> encodeDirect "aaaabccaadeeee"
+
λ> encodeDirect "aaaabccaadeeee"
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
[Multiple 4 'a',Single 'b',Multiple 2 'c',
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
 
Multiple 2 'a',Single 'd',Multiple 4 'e']
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/13 | Solutions]]
 
   
== Problem 14 ==
 
   
 
== Problem 14 ==
(*) Duplicate the elements of a list.
 
  +
<div style="border-bottom:1px solid #eee">(*) Duplicate the elements of a list. <span style="float:right"><small>[[99 questions/Solutions/14|Solutions]]</small></span>
  +
</div>
  +
&nbsp;<br>
   
 
Example:
 
Example:
Line 80: Line 83:
   
 
<haskell>
 
<haskell>
> dupli [1, 2, 3]
+
λ> dupli [1, 2, 3]
 
[1,1,2,2,3,3]
 
[1,1,2,2,3,3]
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/14 | Solutions]]
 
   
   
 
== Problem 15 ==
 
== Problem 15 ==
  +
<div style="border-bottom:1px solid #eee">(**) Replicate the elements of a list a given number of times. <span style="float:right"><small>[[99 questions/Solutions/15|Solutions]]</small></span>
 
  +
</div>
(**) Replicate the elements of a list a given number of times.
 
   
 
Example:
 
Example:
Line 101: Line 103:
   
 
<haskell>
 
<haskell>
> repli "abc" 3
+
λ> repli "abc" 3
 
"aaabbbccc"
 
"aaabbbccc"
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/15 | Solutions]]
 
   
   
 
== Problem 16 ==
 
== Problem 16 ==
  +
<div style="border-bottom:1px solid #eee">(**) Drop every N'th element from a list. <span style="float:right"><small>[[99 questions/Solutions/16|Solutions]]</small></span>
 
  +
</div>
(**) Drop every N'th element from a list.
 
  +
&nbsp;<br>
   
 
Example:
 
Example:
Line 122: Line 124:
   
 
<haskell>
 
<haskell>
*Main> dropEvery "abcdefghik" 3
+
λ> dropEvery "abcdefghik" 3
 
"abdeghk"
 
"abdeghk"
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/16 | Solutions]]
 
 
 
 
== Problem 17 ==
 
== Problem 17 ==
  +
<div style="border-bottom:1px solid #eee">(*) Split a list into two parts; the length of the first part is given. <span style="float:right"><small>[[99 questions/Solutions/17|Solutions]]</small></span>
 
  +
</div>
(*) Split a list into two parts; the length of the first part is given.
 
  +
&nbsp;<br>
   
 
Do not use any predefined predicates.
 
Do not use any predefined predicates.
Line 145: Line 145:
   
 
<haskell>
 
<haskell>
*Main> split "abcdefghik" 3
+
λ> split "abcdefghik" 3
 
("abc", "defghik")
 
("abc", "defghik")
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/17 | Solutions]]
 
   
   
 
== Problem 18 ==
 
== Problem 18 ==
  +
<div style="border-bottom:1px solid #eee">(**) Extract a slice from a list. <span style="float:right"><small>[[99 questions/Solutions/18|Solutions]]</small></span>
 
  +
</div>
(**) Extract a slice from a list.
 
  +
&nbsp;<br>
   
 
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.
 
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.
Line 168: Line 168:
   
 
<haskell>
 
<haskell>
*Main> 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
 
"cdefg"
 
"cdefg"
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/18 | Solutions]]
 
   
   
 
== Problem 19 ==
 
== Problem 19 ==
  +
<div style="border-bottom:1px solid #eee">(**) Rotate a list N places to the left. <span style="float:right"><small>[[99 questions/Solutions/19|Solutions]]</small></span>
 
  +
</div>
(**) Rotate a list N places to the left.
 
  +
&nbsp;<br>
   
 
Hint: Use the predefined functions length and (++).
 
Hint: Use the predefined functions length and (++).
Line 194: Line 194:
   
 
<haskell>
 
<haskell>
*Main> rotate ['a','b','c','d','e','f','g','h'] 3
+
λ> rotate ['a','b','c','d','e','f','g','h'] 3
 
"defghabc"
 
"defghabc"
   
*Main> rotate ['a','b','c','d','e','f','g','h'] (-2)
+
λ> rotate ['a','b','c','d','e','f','g','h'] (-2)
 
"ghabcdef"
 
"ghabcdef"
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/19 | Solutions]]
 
   
 
 
 
== Problem 20 ==
 
== Problem 20 ==
  +
<div style="border-bottom:1px solid #eee">(*) Remove the K'th element from a list. <span style="float:right"><small>[[99 questions/Solutions/20|Solutions]]</small></span>
 
  +
</div>
(*) Remove the K'th element from a list.
 
  +
&nbsp;<br>
   
 
Example in Prolog:
 
Example in Prolog:
Line 228: Line 228:
   
 
<haskell>
 
<haskell>
*Main> removeAt 1 "abcd"
+
λ> removeAt 2 "abcd"
 
('b',"acd")
 
('b',"acd")
 
</haskell>
 
</haskell>
   
[[99 questions/Solutions/20 | Solutions]]
 
   
   

Latest revision as of 04:58, 10 June 2023


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. Solutions

 

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. Solutions

 

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). Solutions

 

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. Solutions

 

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. Solutions

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. Solutions

 

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. Solutions

 

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. Solutions

 

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. Solutions

 

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. Solutions

 

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")