diff --git a/subjects/collatzcountdown.en.md b/subjects/collatzcountdown.en.md index f717ca360..7d31f541c 100644 --- a/subjects/collatzcountdown.en.md +++ b/subjects/collatzcountdown.en.md @@ -4,8 +4,6 @@ Write a function, CollatzCountdown, that returns the number of steps to reach 1 using the collatz countdown. -The function must have the following signature. - ### Expected function ```go @@ -35,8 +33,8 @@ func main() { And its output : ```console -student@ubuntu:~/student/collatzcountdown$ go build -student@ubuntu:~/student/collatzcountdown$ ./collatzcountdown +student@ubuntu:~/student/test$ go build +student@ubuntu:~/student/test$ ./test 10 -student@ubuntu:~/student/collatzcountdown$ +student@ubuntu:~/student/test$ ``` diff --git a/subjects/collatzcountdown.fr.md b/subjects/collatzcountdown.fr.md index f717ca360..7d31f541c 100644 --- a/subjects/collatzcountdown.fr.md +++ b/subjects/collatzcountdown.fr.md @@ -4,8 +4,6 @@ Write a function, CollatzCountdown, that returns the number of steps to reach 1 using the collatz countdown. -The function must have the following signature. - ### Expected function ```go @@ -35,8 +33,8 @@ func main() { And its output : ```console -student@ubuntu:~/student/collatzcountdown$ go build -student@ubuntu:~/student/collatzcountdown$ ./collatzcountdown +student@ubuntu:~/student/test$ go build +student@ubuntu:~/student/test$ ./test 10 -student@ubuntu:~/student/collatzcountdown$ +student@ubuntu:~/student/test$ ```