diff --git a/subjects/raid1a.en.md b/subjects/raid1a.en.md index 1daad823e..53923d169 100644 --- a/subjects/raid1a.en.md +++ b/subjects/raid1a.en.md @@ -6,6 +6,8 @@ Write a function `Raid1a` that prints a **valid** rectangle of width `x` and of The function must draw the rectangles as in the examples. +`x` and `y` will always be positive numbers. + ### Expected function ```go @@ -24,11 +26,11 @@ Program #1 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1a(5,3) + piscine.Raid1a(5,3) } ``` @@ -49,11 +51,11 @@ Program #2 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1a(5,1) + piscine.Raid1a(5,1) } ``` @@ -72,11 +74,11 @@ Program #3 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1a(1,1) + piscine.Raid1a(1,1) } ``` @@ -95,11 +97,11 @@ Program #4 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1a(1,5) + piscine.Raid1a(1,5) } ``` diff --git a/subjects/raid1b.en.md b/subjects/raid1b.en.md index 8e304afe5..d8fab804d 100644 --- a/subjects/raid1b.en.md +++ b/subjects/raid1b.en.md @@ -6,6 +6,8 @@ Write a function `Raid1b` that prints a **valid** rectangle of width `x` and of The function must draw the rectangles as in the examples. +`x` and `y` will always be positive numbers. + ### Expected function ```go @@ -24,11 +26,11 @@ Program #1 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1b(5,3) + piscine.Raid1b(5,3) } ``` @@ -49,11 +51,11 @@ Program #2 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1b(5,1) + piscine.Raid1b(5,1) } ``` @@ -72,11 +74,11 @@ Program #3 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1b(1,1) + piscine.Raid1b(1,1) } ``` @@ -95,11 +97,11 @@ Program #4 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1b(1,5) + piscine.Raid1b(1,5) } ``` diff --git a/subjects/raid1c.en.md b/subjects/raid1c.en.md index 5aaf8a1a6..b1ddda5d0 100644 --- a/subjects/raid1c.en.md +++ b/subjects/raid1c.en.md @@ -6,6 +6,8 @@ Write a function `Raid1c` that prints a **valid** rectangle of width `x` and of The function must draw the rectangles as in the examples. +`x` and `y` will always be positive numbers. + ### Expected function ```go @@ -24,11 +26,11 @@ Program #1 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1c(5,3) + piscine.Raid1c(5,3) } ``` @@ -49,11 +51,11 @@ Program #2 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1c(5,1) + piscine.Raid1c(5,1) } ``` @@ -72,11 +74,11 @@ Program #3 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1c(1,1) + piscine.Raid1c(1,1) } ``` @@ -95,11 +97,11 @@ Program #4 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1c(1,5) + piscine.Raid1c(1,5) } ``` diff --git a/subjects/raid1d.en.md b/subjects/raid1d.en.md index 691d4010e..7d925f461 100644 --- a/subjects/raid1d.en.md +++ b/subjects/raid1d.en.md @@ -6,6 +6,8 @@ Write a function `Raid1d` that prints a **valid** rectangle of width `x` and of The function must draw the rectangles as in the examples. +`x` and `y` will always be positive numbers. + ### Expected function ```go @@ -24,11 +26,11 @@ Program #1 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1d(5,3) + piscine.Raid1d(5,3) } ``` @@ -49,11 +51,11 @@ Program #2 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1d(5,1) + piscine.Raid1d(5,1) } ``` @@ -72,11 +74,11 @@ Program #3 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1d(1,1) + piscine.Raid1d(1,1) } ``` @@ -95,11 +97,11 @@ Program #4 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1d(1,5) + piscine.Raid1d(1,5) } ``` diff --git a/subjects/raid1e.en.md b/subjects/raid1e.en.md index 055dcfa39..032f5ae6c 100644 --- a/subjects/raid1e.en.md +++ b/subjects/raid1e.en.md @@ -6,6 +6,8 @@ Write a function `Raid1e` that prints a **valid** rectangle of width `x` and of The function must draw the rectangles as in the examples. +`x` and `y` will always be positive numbers. + ### Expected function ```go @@ -24,11 +26,11 @@ Program #1 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1e(5,3) + piscine.Raid1e(5,3) } ``` @@ -49,11 +51,11 @@ Program #2 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1e(5,1) + piscine.Raid1e(5,1) } ``` @@ -72,11 +74,11 @@ Program #3 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1e(1,1) + piscine.Raid1e(1,1) } ``` @@ -95,11 +97,11 @@ Program #4 package main import ( - student "./student" + piscine ".." ) func main() { - student.Raid1e(1,5) + piscine.Raid1e(1,5) } ```