| changeset 281 | 32dfd2ca577b |
| parent 266 | 31e5218f43de |
| child 343 | 51e25cc30483 |
--- 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) = ... +} -