|
|
|
## raid1c
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `Raid1c` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
The function must draw the rectangles as in the examples.
|
|
|
|
|
|
|
|
`x` and `y` will always be positive numbers. Otherwise, the function should print nothing.
|
|
|
|
|
|
|
|
### Expected function
|
|
|
|
|
|
|
|
```go
|
|
|
|
func Raid1c(x,y int) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here is are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.Raid1c(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
|
|
|
ABBBA
|
|
|
|
B B
|
|
|
|
CBBBC
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.Raid1c(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
|
|
|
ABBBA
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.Raid1c(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
|
|
|
A
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.Raid1c(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
|
|
|
A
|
|
|
|
B
|
|
|
|
B
|
|
|
|
B
|
|
|
|
C
|
|
|
|
student@ubuntu:~/[[ROOT]]/test$
|
|
|
|
```
|