core_marking1/collatz_test1.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 09 Nov 2022 16:44:16 +0000
changeset 432 87e487ccbd7c
parent 421 864107857d27
child 491 2a30c7dfe3ed
permissions -rw-r--r--
updated wordle testing



assert(C1.collatz(1) == 0)
assert(C1.collatz(6) == 8)
assert(C1.collatz(9) == 19)
assert(C1.collatz(9000) == 47)