main_testing2/wordle_test1.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 09 Nov 2022 16:44:16 +0000
changeset 432 87e487ccbd7c
child 434 1eb11d787af7
permissions -rw-r--r--
updated wordle testing
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
432
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     1
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     2
import Resit._
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     3
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     4
val urban_wordle_url = """https://nms.kcl.ac.uk/christian.urban/wordle.txt"""
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     5
val urban_secrets = get_wordle_list(urban_wordle_url)
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     6
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     7
assert(urban_secrets.length == 12972)
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     8
assert(urban_secrets.filter(_.length != 5) == Nil)
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     9
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    10
assert(get_wordle_list(urban_wordle_url ++ "2") == Nil)
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    11