main_testing2/wordle_test7.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Sat, 11 Mar 2023 23:12:49 +0000
changeset 464 1b1330cde075
parent 460 f5c0749858fd
child 472 fbff6f601370
permissions -rw-r--r--
updated
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
434
1eb11d787af7 updated import
Christian Urban <christian.urban@kcl.ac.uk>
parents: 432
diff changeset
     2
import M2._
432
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
import io.Source
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     5
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
def urban_get_wordle_list(url: String) : List[String] = {
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
     8
  Source.fromFile(url)("ISO-8859-1").getLines().toList
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
val urban_secrets = urban_get_wordle_list("wordle.txt")
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    11
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    12
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    13
//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
    14
//val urban_secrets = get_wordle_list(urban_wordle_url)
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    15
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    16
assert(ranked_evil(urban_secrets, "abbey") == List("whizz"))
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    17
assert(ranked_evil(urban_secrets, "afear") == List("buzzy"))
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    18
assert(ranked_evil(urban_secrets, "zincy") == List("jugum"))
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    19
assert(ranked_evil(urban_secrets, "zippy") == List("chuff"))
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    20
87e487ccbd7c updated wordle testing
Christian Urban <christian.urban@kcl.ac.uk>
parents:
diff changeset
    21
460
f5c0749858fd updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 434
diff changeset
    22
assert(ranked_evil(urban_secrets, "beats") == List("fuzzy"))
f5c0749858fd updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 434
diff changeset
    23
assert(ranked_evil(urban_secrets, "vitae") == List("fuzzy"))
f5c0749858fd updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 434
diff changeset
    24
assert(ranked_evil(urban_secrets, "bento") == List("fuzzy"))
f5c0749858fd updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 434
diff changeset
    25
assert(ranked_evil(urban_secrets, "belts") == List("fuzzy"))