changeset 281 | 87b9e3e2c1a7 |
parent 266 | ca48ac1d3c3e |
child 343 | c8fcc0e0a57f |
--- a/templates1/collatz.scala Tue Oct 29 11:11:44 2019 +0000 +++ b/templates1/collatz.scala Tue Oct 29 14:12:24 2019 +0000 @@ -1,6 +1,7 @@ // Basic Part about the 3n+1 conjecture //====================================== +object CW6a { //(1) Complete the collatz function below. It should // recursively calculate the number of steps needed @@ -23,5 +24,5 @@ //def collatz_max(bnd: Long) : (Long, Long) = ... +} -