-
Notifications
You must be signed in to change notification settings - Fork 3
/
chapter-08.hs
308 lines (219 loc) · 6.2 KB
/
chapter-08.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
import Data.List
-- Rock Paper Scissors from Chapter 4
data Move = Rock |
Paper |
Scissors
deriving (Ord, Show, Eq)
beat :: Move -> Move
beat Rock = Paper
beat Paper = Scissors
beat _ = Rock
lose :: Move -> Move
lose Rock = Scissors
lose Paper = Rock
lose _ = Paper
data Result = Win |
Lose |
Draw
deriving (Show, Eq)
opposite :: Result -> Result
opposite Win = Lose
opposite Lose = Win
opposite Draw = Draw
type Tournament = ([Move], [Move])
exampleTournament = ([Rock, Rock, Paper], [Scissors, Paper, Rock])
-- Exercise 8.1
-- Similar to the 'outcome' function in 4.12
outcome :: Move -> Move -> Integer
outcome Rock Scissors = 1
outcome Paper Rock = 1
outcome Paper Scissors = 1
outcome Scissors Rock = -1
outcome Rock Paper = -1
outcome Scissors Paper = -1
outcome Rock Rock = 0
outcome Paper Paper = 0
outcome Scissors Scissors = 0
-- Exercise 8.2
tournamentOutcome :: Tournament -> Integer
tournamentOutcome ([], []) = 0
tournamentOutcome (as, bs) = sum [outcome a b | (a, b) <- zip as bs]
{- Alternatively:
tournamentOutcome ((a:as), (b:bs)) = outcome a b + tournamentOutcome (as, bs)
-}
-- Exercise 8.3
type Strategy = [Move] -> Move
beatLastMove :: Strategy
beatLastMove [] = Rock
beatLastMove (latest:rest) = beat latest
loseLastMove :: Strategy
loseLastMove [] = Scissors
loseLastMove (latest:rest) = lose latest
-- Exercise 8.4
lastTwo :: Strategy
{- This works because e.g. if they played Rock twice, and assuming they
won't play Rock again, they'll play Scissors or Paper. Whatever loses to
Rock will either beat this or draw.
-}
lastTwo moves@(prev1:prev2:rest)
| prev1 == prev2 = lose prev1
| otherwise = beatLastMove moves -- or anything else
lastTwo (latest:rest) = lose latest
lastTwo [] = Rock
-- Exercise 8.5
frequencyStrategy :: Strategy
frequencyStrategy moves = beat $ fst $ minimum [(Rock, count Rock),
(Scissors, count Scissors),
(Paper, count Paper)]
where
count a = sum [1 | move <- moves, move == a]
-- Exercise 8.6
-- Harder
-- Exercise 8.7
-- Harder
-- Exercise 8.8
-- Hard
-- Exercise 8.9
-- Hard
-- Exercise 8.10
testPalindrome :: IO ()
testPalindrome =
do
putStrLn "Enter your name:"
line <- getLine
case isPalindrome line of
True -> putStrLn $ "This is a palindrome:" ++ line
False -> putStrLn $ "This is NOT a palindrome:" ++ line
where
isPalindrome s = True -- TODO
-- Exercise 8.11
getInt =
do
line <- getLine
return (read line :: Integer)
addTwoNumbers :: IO ()
addTwoNumbers =
do
putStr "Enter the 1st number: "
firstNum <- getInt
putStr "Enter the 2nd number: "
secondNum <- getInt
let result = firstNum + secondNum
putStr "The result of "
print firstNum
putStr " + "
print secondNum
putStr " is "
print result
-- Exercise 8.12
putNtimes :: Integer -> String -> IO ()
putNtimes n s =
do
let t = concat $ take (fromIntegral n) $ repeat $ s ++ "\n"
putStr t
-- Exercise 8.13
addNnumbers :: IO ()
addNnumbers =
do
putStr "Enter the number of integers: "
ntimes <- getInt
thesum <- add_the_numbers ntimes
print thesum
where
add_the_numbers n =
do
if n <= 0 then
return 0
else do
putStr "Enter the Integer: "
summand <- getInt
rest <- add_the_numbers (n - 1)
return (summand + rest)
-- Exercise 8.14
wc :: IO ()
wc = do
line <- getLine
if line == "" then
return ()
else do
putStrLn line
wc
-- Exercise 8.15
-- Need palindrome implementation
-- Exercise 8.16
-- More palindrome stuff.
-- Exercise 8.17
addNumbersRepeat :: IO ()
addNumbersRepeat =
do
putStrLn "Enter the integers one by one until. To stop enter 0."
thesum <- add_the_numbers
print thesum
where
add_the_numbers =
do
n <- getInt
if n == 0 then
return 0
else do
rest <- add_the_numbers
return (n + rest)
-- Exercise 8.18
addNumbersSort :: IO ()
addNumbersSort =
do
putStrLn "Enter the integers one by one until. To stop enter 0."
numbers <- add_the_numbers
putStrLn "The sorted numbers are:"
-- Cheating - he probably wants to do the sort inline somehow as the numbers come in.
print $ sort numbers
where
add_the_numbers =
do
n <- getInt
if n == 0 then
return []
else do
rest <- add_the_numbers
return (n : rest)
-- Exercise 8.19
copy :: IO ()
copy =
do
line <- getLine
let whileCopy = do
if (line == "")
then return ()
else do
putStrLn line
line <- getLine
whileCopy
whileCopy
{- The function never terminates unless you enter a newline at the very start.
This is because when whileCopy gets called again recursively, "line" is re-set
to the value it had outside the definition.
-}
-- Exercise 8.20
step :: Strategy -> Strategy -> Tournament -> Tournament
step strategyA strategyB (movesA, movesB) =
(strategyA movesB : movesA, -- What A will play
strategyB movesA : movesB) -- What B will Play
playSvsS :: Strategy -> Strategy -> Integer -> Tournament
playSvsS strategyA strategyB n =
turn ([], []) n
where
turn t m =
if (m <= 0) then
t
else
turn (strategyA (snd t) : snd t, strategyB (fst t) : fst t) (m - 1)
testfn :: Integer -> Integer -> Integer -> Integer
testfn a b c =
if a <= 0 then
b
else
c
-- Exercise 8.21
type Strategy2 = Tournament -> Move
-- Exercise 8.22
-- Exercise 8.23