author | Christian Urban <christian.urban@kcl.ac.uk> |
Thu, 02 Nov 2023 23:34:53 +0000 | |
changeset 475 | 59e005dcf163 |
parent 437 | d4d4669ad054 |
permissions | -rw-r--r-- |
435
fda7c39f3b6a
updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff
changeset
|
1 |
|
475 | 2 |
def urbanmain() = { |
3 |
import M2._ |
|
435
fda7c39f3b6a
updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff
changeset
|
4 |
|
475 | 5 |
assert(score("chess", "caves") == List(Correct, Absent, Absent, Present, Correct)) |
6 |
assert(score("doses", "slide") == List(Present, Absent, Absent, Present, Present)) |
|
7 |
assert(score("chess", "swiss") == List(Absent, Absent, Absent, Correct, Correct)) |
|
8 |
assert(score("chess", "eexss") == List(Present, Absent, Absent, Correct, Correct)) |
|
435
fda7c39f3b6a
updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff
changeset
|
9 |
|
475 | 10 |
val urban_p = pool("chess", "caves") |
435
fda7c39f3b6a
updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff
changeset
|
11 |
|
475 | 12 |
assert(aux("chess".toList, "caves".toList, Nil) == List(Correct, Absent, Absent, Absent, Correct)) |
13 |
assert(aux("chess".toList, "caves".toList, urban_p) == List(Correct, Absent, Absent, Present, Correct)) |
|
14 |
} |